开发者

Facebook C# SDK, AJAX in iFrame app

I am making an iFrame application for Facebook using the Facebook C# SDK. I have it that the user is authenticating and I can get their username using the Graph API (FaceBookApp.Api("/userid"))

My problem now is that when I do an AJAX call to a page I can no longer use the Api. The userid is 0. When opening up FireBug the response from the request is "Unsupported get request." I suspect this has something to do with the face that the AJAX request is using a different session for the call and that session is not authenticated. I was wondering if there is any way to get around this? I known I could make the page I am requesting re-authenticate but that would mean I would have to reauth for every request which does not seem effici开发者_如何学Goent. I am using Jquery to make the request.

Any help is much appreciated.

Thanks


The issue is that with an ajax call in an iframe you must send the session info for the client to the server. Otherwise the FacebookApp has no way of knowing who the current user is. You can solve this in one of two ways.

  1. You can send the entire signed_request value to the server.
  2. You can use the Javascript SDK to get the users access token and send just that value to the server.

I think the first way is the best. All you need to do is change your ajax url to include the signed request like this:

var ajaxUrl = '/services/example?signed_request=<%=Request.Querystring["signed_request"] %>';

Then just make your call like normal with the new url. After that the FacebookApp class will read the session from the ajax request and you will be good to go.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜