Hey everyone.
I started my app in Javascript, and was using a few makeRequest calls to retrieve data from my server. I enabled OAuth on these requests by using the following code:
var params = {};
params[opensocial.ContentRequestParameters.AUTHENTICATION] = opensocial.ContentRequestParameters.AuthorizationType.SIGNED;
opensocial.makeRequest(url, callback, params);
I've tried the same thing using the Flex library, but no luck! I'm not getting the Oauth signature sent.
Does anyone know how I'd achieve the same thing in Flex that I was doing in Javascript? Is it a supported feature right now?
Thanks!