Hello - I am trying to retrieve data from Yahoo APIs using OAUTH 1.0. I am able to get the user to authorize the data access and get the access token. However, I am stuck after that step. Yahoo requires requests to be signed with SHA-1 and I am unable to send a properly signed request. Here is the URI that I am trying to access:"
http://social.yahooapis.com/v1/me/guid"
A couple of options I have tried:
1) Use the
OAuthCalculator class to sign: WS.url(GuidURL).sign(OAuthCalculator(KEY, t)).get()
When I do this, the app never gets back any result and shows a blank screen.
2) Sign the header my self using the Crypto library. Should I just retrieve the WSRequestHolder.headers and sign it?
Can you please point me in the right direction? Thanks.
-MG