Questions tagged [fbdialogs]
38 questions
1
vote
0 answers
Using UIImage in FBDialogs
I am developing an app which has an option to share a photo via Facebook.
My photo is UIImage instance (and not URL, I don't need it to be a link).
Using the iOS integrated dialog, I am able to post an image to my wall, but the problem is that it…

user-123
- 874
- 1
- 13
- 34
1
vote
0 answers
iOS FBDialog crashes after clicking on Post
I am trying to create a share dialog to post on Facebook the user action. To do that I use this code:
id fbObject =
[FBGraphObject openGraphObjectForPostWithType:@"namespace:action"
…

user2477825
- 69
- 1
- 7
1
vote
0 answers
Posts posted throught Feed Dialog are not increasing monthly active user count (MAU)
I'm posting posts to Facebook using Feed Dialog:
function gogogo() {
var bitLyUrl = getQueryVariable('bitLyUrl');
var hashTag = getQueryVariable('hashTag');
var message = getQueryVariable('message');
FB.init({ appId: 452707668140903,…

user1475697
- 31
- 3
1
vote
1 answer
Can't post story to Facebook
I'm using the latest SDK and trying to post a story to facebook, but for some reason it doesnt work. It's only working when I try to post with this code:
NSMutableDictionary *action = [FBGraphObject graphObject];
action[@"funtone"] =…

ytpm
- 4,962
- 6
- 56
- 113
1
vote
0 answers
How do I reconcile the FBDialog API with the rest of my app's Facebook integration?
I am confused about the general flow of Facebook and my application. When a user creates an account on our service (I'll call it MyApp) through SSO, we associate their account on MySite with their Facebook uid and access token. Then, based on…

Tiki
- 1,206
- 1
- 13
- 17
1
vote
1 answer
dialogDidComplete: FBDialogDelegate method gets called in iOS SDK even if user cancels
iOS SDK: Is it a known issue that when a user cancels a Feed Dialog (or any other platform dialog) the dialogCompleteWithUrl: and dialogDidComplete: FBDelegate methods get called – which obviously is wrong.
dialogDidNotComplete: gets called…

Ralf
- 2,512
- 4
- 24
- 26
1
vote
0 answers
Add Friend through Facebook Dialog - Android Facebook SDK
I am currently developing an Android app using the Facebook API. One module of my application consists in adding a friend (knowing the ID) and I would like to add a friend through the FB Dialog object.
I used the Facebook object with dialog…

Tony K
- 128
- 12
0
votes
1 answer
Static FBML tab - Dialog() stopped working
Has anyone else experienced this?
var msgdialog = new Dialog();
msgdialog.showMessage('title', 'text');
It is completely ignored - no errors. Seems like this code is even stripped from the static FBML.

marrkd
- 1
0
votes
1 answer
iFrame inside Facebook Dialog Box
I am trying to open a flash gallery with modal box in my iFrame Facebook app, but it is bigger than 520px. I found 2 solutions:
Insert a piece of code in the parent windows to make the modal to open with Target _parent, This is impossible since the…

Ricardo Lopes
- 137
- 1
- 2
- 11
0
votes
1 answer
API Error Code 102 : javascript dialogs with php
API Error Code: 102
API Error Description: Session key invalid or no longer valid
Error Message: Iframe dialogs must be called with a session key
I get this funny message when calling a fb dialog to post to a friends wall in my new app. The same…

zapumal
- 159
- 1
- 2
- 12
0
votes
2 answers
why fbdidlogin didn't call?
- (id)init {
if (self == [super init]) {
facebook = [[Facebook alloc] initWithAppId:kAppId];
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
if ([defaults objectForKey:@"FBAccessTokenKey"]
&& [defaults…

Danny Togaer
- 349
- 3
- 14
0
votes
1 answer
Using old style access token with SSO FBDialog?
I've an application, that has old style facebook access_tokens (something like "APPID|xyeahsfa-123465683821.---..." ) and an iOS App using the current facebook SDK (with SSO).
Using
Facebook *facebook = [[Facebook alloc] initWithAppId:appId];
…

Blitz
- 5,521
- 3
- 35
- 53
0
votes
1 answer
IOS Standalone Web App Facebook Share Error 104
In one of my Web App, I have to integrated Facebook Share Feature. It is working fine for normal Web APP. Following is the code:
FB.ui({
method: 'feed',
name: "App Name",
link: "App Links",
description: "My Description",
picture:…

Kalpesh Patel
- 2,772
- 2
- 25
- 52
0
votes
1 answer
FB dialog app name
When I try to share on Facebook using presentOSIntegratedShareDialogModallyFrom, I can not see the app name. I use the following code:
[FBSettings setDefaultDisplayName:[[FBSettings defaultDisplayName]…

user3603583
- 33
- 7
0
votes
0 answers
Using presentShareDialogWithLink method of FBDialogs ignores description parameter ios
I am using FBDialogs to share on facebook where I am sharing picture, name and description.
Below is my code used for sharing:-
[FBDialogs presentShareDialogWithLink:params.link
name:params.name
…

Zalak Patel
- 1,937
- 3
- 26
- 44