1

I want to authorize user and then want to access user photo that are available on a cloud drive. Kindly guide me how to access user cloud drive in android application and get user photos.

John Rotenstein
  • 241,921
  • 22
  • 380
  • 470
rana_sadam
  • 1,216
  • 10
  • 18

1 Answers1

0

Have you check out Amazon Cloud Drive API? You would use Login with Amazon for authorization, and then use the Cloud Drive's Nodes API to retrieve a list of photos.

Getting List of files.

GET : {{metadataUrl}}/drive/v1/nodes?filters=kind:FILE

filters: (Optional) filters for request, see filtering

Christina
  • 1,870
  • 12
  • 16
  • i m using the url to authenticate the user url is as follow https://www.amazon.com/ap/oa?client_id=amzn1.application-oa2-client.5b7abaada12f46218b2d9f8506cb50d9&scope=clouddrive%3Aread%20clouddrive%3Awrite &response_type=token&redirect_uri=http://nextin.co it is giving error in the redirect uri error is as follow http://nextin.co/?error=invalid_scope&error_description=An+unknown+scope+was+requested – rana_sadam Mar 10 '15 at 08:10
  • 1
    @rana_sadam Did you [whitelist](https://developer.amazon.com/cd/sp/overview.html) your security profile? [see here](https://forums.developer.amazon.com/forums/thread.jspa?threadID=4619&tstart=15) – Christina Mar 11 '15 at 04:07