Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am user to user apprequests using:

[facebook dialog:@"apprequests" andParams:params andDelegate:self]; 

This is working, however I would like to work around the Facebook dialog to display a custom view, and send a NSURLRequest with the access token, uids and other parameters embedded in the request.

I have been trying to debug the sdk to what is sent with the request, but as it is send via the UIWebView, I cannot debug it.

I also tried to use a web proxy debugger "Charles" to see the http call request, but it is encrypted, and if I work around that by requesting from @"http://m.facebook.com/dialog/" instead of https, I get the following JSON response.

{"error":{"message":"You must use https:// when passing an access token","type":"OAuthException","code":1}}

Is there a way to directly send app request without using the dialog?

share|improve this question

1 Answer

Is there a way to directly send app request without using the dialog?

Only app-to-user-requests, and these work only if the target user is already connected to your app.

share|improve this answer
Yes, I am trying to make app-to-user-requests. But have not found a suitable method or example in the SDK or elsewhere. – BROK3N S0UL Jul 2 '12 at 22:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.