I want to write an Android application that uses the Remember the Milk API, but I can’t figure out how to use the API’s app authentication scheme. How do I generate the URL to authenticate my application with RTM?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I was looking for this too, and seems it was right in front of me. https://www.rememberthemilk.com/services/api/request.rest.rtm is where it explains the format.
Basically it’s https://api.rememberthemilk.com/services/rest/ and then whatever you want to send.
So it would seem you’d start by getting the frob using https://api.rememberthemilk.com/services/rest/?method=rtm.auth.getFrob&api_key=123456789
Then when you get the frob back you’d use it to get a token with https://api.rememberthemilk.com/services/rest/?method=rtm.auth.getToken&api_key=123456789&frob=0a56717c3561e53584f292bb7081a533c197270c
Of course you’d replace that random key and frob with your actual key and whatever you get back from getFrob.
I’m about to try using this myself, so I’ll try and post back if anything needs to be changed.