Windows Azure Mobile Services JavaScript code for Twitter API -
i saw video on channel9 nick harris uses scheduler option of azure mobile services retrieve tweets of user. code in javascript. when tried re-writing code got error stating {"errors":[{"message":"the twitter rest api v1 no longer active. please migrate api v1.1. https://dev.twitter.com/docs/api/1.1/overview.","code":64}]}
snapshot of code: 
what should updated url searching?
i'm not sure how old tutorial you're following is, api 1.1 has been current several years search endpoint indeed not work longer.
the api endpoint want use api 1.1 https://api.twitter.com/1.1/search/tweets.json (documented on twitter developer website here).
however, note unlike previous api version, requires authentication, not able switch out endpoint 1 in code you're using - you'll need oauth dance in code well.
Comments
Post a Comment