fbdialogs

iOS: Post on wall of Selected FB Friends

99封情书 提交于 2020-01-13 04:54:09
问题 Scenario: I would want to share the post to the wall of only selected friends. Prerequisites followed: Out of the entire list of FB Friends, select only the necessary friends and create an Array Steps Tried: Trial 1: Use FBWebDialogs and call method + (void)presentFeedDialogModallyWithSession:(FBSession *)session parameters:(NSDictionary *)parameters handler:(FBWebDialogHandler)handler; In the Parameters dictionary, set value for "to". Works perfectly fine when the recipient is only one.

Requests Dialog only works with Canvas-View?

旧时模样 提交于 2019-12-21 05:16:17
问题 I've some page-tabs for a few fanpages and there I'd like to integrate the RequestDialog. But unfortunately it always tries to redirect the friend, that got a request, to the canvas page. Is there a way to send the user to the page-tab, where his friend initially started the request dialog? Thanks in advance, Jurik 回答1: Accepting a request will always go to the canvas page with the request_ids parameter added. See the "User Response" section of this doc: https://developers.facebook.com/docs

iOS: Post on wall of Selected FB Friends

血红的双手。 提交于 2019-12-04 12:55:41
Scenario: I would want to share the post to the wall of only selected friends. Prerequisites followed: Out of the entire list of FB Friends, select only the necessary friends and create an Array Steps Tried: Trial 1: Use FBWebDialogs and call method + (void)presentFeedDialogModallyWithSession:(FBSession *)session parameters:(NSDictionary *)parameters handler:(FBWebDialogHandler)handler; In the Parameters dictionary, set value for "to". Works perfectly fine when the recipient is only one. Cannot share if the recipient is more than one. Trial 2: Use FBDialogs and call + (FBAppCall *

Requests Dialog only works with Canvas-View?

走远了吗. 提交于 2019-12-03 16:44:45
I've some page-tabs for a few fanpages and there I'd like to integrate the RequestDialog. But unfortunately it always tries to redirect the friend, that got a request, to the canvas page. Is there a way to send the user to the page-tab, where his friend initially started the request dialog? Thanks in advance, Jurik Accepting a request will always go to the canvas page with the request_ids parameter added. See the "User Response" section of this doc: https://developers.facebook.com/docs/reference/dialogs/requests/ Obviously you could write code to detect when the user arrives with the request

How to authorize user through a DIALOG with the NEW Facebook Connect iOS API?

孤街浪徒 提交于 2019-11-27 13:22:41
I understand - http://developers.facebook.com/docs/guides/mobile/#ios -, seems really useful, but my app won't support multitasking, so this "cross safari" method won't work for me. Is there a brief example somewhere (or can someone please copy here) an authentication process trough FBDialogs (with this so called "new" API)? I'm just getting know this SDK, so please as basic as you can. Struggled to figure this out for a couple of hours... Here is the solution to bypass fb app|background-safari authentication, and it is just to change in Facebook.m: [self authorizeWithFBAppAuth:YES safariAuth

How to authorize user through a DIALOG with the NEW Facebook Connect iOS API?

强颜欢笑 提交于 2019-11-26 16:18:53
问题 I understand - http://developers.facebook.com/docs/guides/mobile/#ios -, seems really useful, but my app won't support multitasking, so this "cross safari" method won't work for me. Is there a brief example somewhere (or can someone please copy here) an authentication process trough FBDialogs (with this so called "new" API)? I'm just getting know this SDK, so please as basic as you can. 回答1: Struggled to figure this out for a couple of hours... Here is the solution to bypass fb app|background