When working with the CF 10 Amazon S3 integration, sending the S3 credentials via the URL versus setting the credentials in Application.cfc returns different results. For example, with Application.cfc, the following would return a query listing all the files in the directory
s3://bucket/userfiles/dev/1252/image/
However, using the URL, it returns an empty query.
s3://accessKeyid:awsSecretKey@bucket/userfiles/dev/1252/image/
I need to use the URL method because I am working with very old code that still uses Application.cfm.
Has anyone else encountered this problem? Is there a workaround?