Skip to content Skip to sidebar Skip to footer

How To Store User Information In Relational Database Using Amazon Aws For Facebook Login In Android

I am currently developing an Android app and have a Facebook login up and running. What I am trying to do next is store the user information in a relation database service in Amazo

Solution 1:

You cannot talk to a relational database service directly from android. You will need some sort of web server or lambda function to talk to the rds and respond you with the query output.

You can find more information on how to do that here http://docs.aws.amazon.com/lambda/latest/dg/vpc-rds.html

You can then use a AWS SDK for Android to invoke the lambda function that you have created.

Post a Comment for "How To Store User Information In Relational Database Using Amazon Aws For Facebook Login In Android"