Sharing Facebook open graph action succeeds, but post isn't visible - ios

I'm migrating a legacy app from facebook iOS SDK 2.x to 3.x, and I'm having trouble getting my open graph object to share successfully.
Here's the code I have to share the object:
NSMutableDictionary *properties = [#{
#"og:type": #"my-app:my-object",
#"og:title": #"Title",
#"og:description": #"text",
} mutableCopy];
if(photoUrl){
FBSDKSharePhoto *photo = [FBSDKSharePhoto photoWithImageURL:[NSURL URLWithString:photoUrl] userGenerated:NO];
properties[#"og:image"] = #[photo];
}
FBSDKShareOpenGraphObject* graphObject = [FBSDKShareOpenGraphObject objectWithProperties:properties];
FBSDKShareOpenGraphAction *action = [[FBSDKShareOpenGraphAction alloc] init];
action.actionType = #"my-app:my-action";
[action setObject:graphObject forKey:#"my-object"];
FBSDKShareOpenGraphContent *content = [[FBSDKShareOpenGraphContent alloc] init];
content.action = action;
content.previewPropertyName = #"my-object";
FBSDKShareAPI* shareAPI = [FBSDKShareAPI shareWithContent:content delegate:[ShareDelegate theShareDelegate]];
if(![shareAPI share]){
NSLog(#"![shareAPI share]");
onFail(nil);
}else{
NSLog(#"Share succeeded");
onFinish();
}
The share action appears to succeed. The delegate method -(void)sharer:(id<FBSDKSharing>)sharer didCompleteWithResults:(NSDictionary *)results is called with this results dictionary:
{
completionGesture = post;
postId = 1608774589402167;
}
But the post doesn't appear in the test user's news feed. Also, on the open graph -> action types section of the app dashboard at https://developers.facebook.com I see this error message:
Your Open Graph action failed to publish on any of the Platforms you submitted. Make sure the action is working properly by publishing the action with a test user before resubmitting.
This graph action was being shared successfully using the Facebook 2.x SDK for iOS.
What could the point of failure be?

I'm not sure if you still need the answer here, but to get the action to show in the users' timeline you need to set the key on your action:
[action setString:#"true" forKey:#"fb:explicitly_shared"];
This requires configuration for your custom action as well (check boxes at the bottom of the page).

Related

Open native iOS app from Facebook feed

I'm sharing a FBSDKShareOpenGraphObject with an FBSDKShareOpenGraphAction of type "video.watches" using the Facebook's SDK. Everything goes fine, the post appears on the Facebook feed but if I tap on the application's name I get an error. This is the code I'm using for sharing:
FBSDKShareOpenGraphObject *object = [FBSDKShareOpenGraphObject objectWithProperties:#{#"og:type": #"video.other",
#"og:title": #"TV Show",
#"og:image": #"http://cdn1.tnwcdn.com/wp-content/blogs.dir/1/files/2013/02/tv-set.jpg",
#"og:url": show_url}];
FBSDKShareOpenGraphAction *action = [[FBSDKShareOpenGraphAction alloc] init];
[action setActionType:#"video.watches"];
[action setObject:object forKey:#"video"];
[action setNumber:#(7200000) forKey:#"expires_in"];
FBSDKShareOpenGraphContent *content = [[FBSDKShareOpenGraphContent alloc] init];
[content setPreviewPropertyName:#"video"];
[content setAction:action];
_shareDialog = [[FBSDKShareDialog alloc] init];
_shareDialog.fromViewController = [self.delegate collectionViewControllerForCell:self];
_shareDialog.shareContent = content;
_shareDialog.delegate = self;
if ([[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:#"fbauth2://"]]){
_shareDialog.mode = FBSDKShareDialogModeNative;
} else {
_shareDialog.mode = FBSDKShareDialogModeAutomatic;
}
[_shareDialog show];
The result:
But when I tap on TV Channel (the boxed one) I get this error:
I'd like to open the native application when I tap on that text, in the same way Instagram opens when you tap on it's name in the "X posted a photo on Instagram" on a photo. I configured the Bundle ID and the iPhone Store ID in application's settings, on developer.facebook.com, but no success. What I am missing?
Go to developers.facebook.com and make sure your app is not in test mode.
Go to "App Review" -> Make public?
And mark it as yes.
If you are not ready to make it public, add the facebook user you are using to the testers of the app under "Roles".

FBSDK OpenGraph issues on Object and Action

I have been trying to add an OpenGraph post for quite some time but I cannot figure out the current documentation and broken links to tutorials.
Relevant setup (values are made up):
FB namespace: "spot_app"
Open Graph Object Types: "Spot", inherits from Place as this will include a link to a place in google maps.
I am trying to have the story: "UserX saved a Spot", followed by a user comment and business information.
Relevant code:
NSDictionary *properties = #{#"og:type":#"spot_app:Spot",
#"og:title":#"Spot OpenGraph Title",
#"og:description":#"Spot Description",
#"og:site_name":#"spotAppSite.com",
#"og:url":googleURL};
FBSDKShareOpenGraphObject *object = [FBSDKShareOpenGraphObject objectWithProperties:properties];
FBSDKShareOpenGraphAction *action = [FBSDKShareOpenGraphAction actionWithType:#"save.saves" object:object key:#"spot_app:Spot"];
FBSDKShareOpenGraphContent *content = [FBSDKShareOpenGraphContent new];
content.action = action;
content.previewPropertyName = #"spot_app:Spot";
FBSDKShareAPI *shareAPI = [FBSDKShareAPI new];
shareAPI.shareContent = content;
shareAPI.delegate = self;
[shareAPI share];
The documentation around FBSDKShareOpenGraphAction is quite poor and says several different things in several different places about how to use the "save" action.
Guidance on where I am going wrong? I currently get the error: Failed: The operation couldn’t be completed. (com.facebook.sdk.share error 201.)

How to use expires_in in Facebook v4.0 iOS SDK with an Open Graph action?

I have been migrating to Facebook SDK v4.x to implement an Open Graph story and so far it's been fine, but the problem that I am having is that I used to add a property for the action called "expires_in".
The thing is that I don't really know how to do that with new SDK.
The code that I am using is identical from the tutorial, like this:
FBSDKShareOpenGraphAction *action = [[FBSDKShareOpenGraphAction alloc] init];
action.actionType = #"books.reads";
[action setObject:object forKey:#"books:book"];
I assumed that I needed to do the following:
[action setObject:30 forKey:#"expires_in"];
but the "setObject" parameter requires an object of type FBSDKShareOpenGraphObject, which I don't know exactly which parameters will it should get. For example, should I create the object like this?
NSDictionary *properties = #{
#"expires_in": #"30",
};
FBSDKShareOpenGraphObject *expires_in_object = [FBSDKShareOpenGraphObject objectWithProperties:properties];
Ok, I got it working.
I said in a comment above that it didn't work out with setNumber:forKey but it finally worked. This is what I use:
[action setNumber:[NSNumber numberWithInt:300] forKey:#"expires_in"];

iOS how to publish action on custom object Graph Api - Facebook

I need to publish action
I got success in publishing 'liking the link' from graph API.
e.g 'abc likes www.abc.com'
now I am stuck at 'liking custom object' e.g 'abc likes toy1'
and also to get total number of likes.
This is sample code which is not working
NSDictionary *properties = #{
#"og:type": #"toy",
#"og:title": #"toy1",
#"og:description": #"This is a sample course."};
FBSDKShareOpenGraphObject *object = [FBSDKShareOpenGraphObject objectWithProperties:properties];
FBSDKShareOpenGraphAction *action = [[FBSDKShareOpenGraphAction alloc] init];
action.actionType = #"og.likes";
[action setObject:object forKey:#"toy"];
FBSDKShareOpenGraphContent *content = [[FBSDKShareOpenGraphContent alloc] init];
content.action = action;
content.previewPropertyName = #"toy";
FBSDKShareAPI *shareAPI = [[FBSDKShareAPI alloc] init];
// optionally set the delegate
shareAPI.delegate = self;
shareAPI.shareContent = content;
[shareAPI share];
Edit : My code is working by changing
toy
to
appnamespace:toy
and
[action setObject:object forKey:#"toy"]; // to [action setObject:object forKey:#"object"];
now I want to fetch total number of likes on this custom object
A "og:type" of "toy" is not valid. It should either be a common OG type (like "fitness.course") or a custom one ("yourappnamespace:toy").
If you are simply liking a website or other URL, you can skip the OG object and just create the action like
FBSDKShareOpenGraphAction *action = [FBSDKShareOpenGraphAction actionWithType:#"og.likes"
objectURL:[NSURL URLWithString:#"http://www.example.com"]
key:#"og:object"];
(note that if you try to like the same thing twice it will give you an error).
You should make sure your delegate implements - (void)sharer:(id<FBSDKSharing>)sharer didFailWithError:(NSError *)error to receive error information.
You may also want to use the FBSDKLikeButton or FBSDKLikeControl instead.

Explicit Sharing on Facebook iOS SDK 4.0

I want to explicitly share an open graph action on Facebook using the new iOS 4.0 SDK. The following does not work. It shows up on my Activity Log, but not on my Timeline.
// Construct an FBSDKSharePhoto
FBSDKSharePhoto *photo = [[FBSDKSharePhoto alloc] init];
photo.image = img;
photo.userGenerated = YES;
// Create an object
NSDictionary *properties = #{
#"og:type": #"theprose:post",
#"og:title": post.title,
#"og:description": post.text,
#"og:caption": #"A fresh picked Prose for you.",
#"og:url": post.url,
#"fb:explicitly_shared": #"true"
};
FBSDKShareOpenGraphObject *object = [FBSDKShareOpenGraphObject objectWithProperties:properties];
// Create an action
FBSDKShareOpenGraphAction *act = [[FBSDKShareOpenGraphAction alloc] init];
act.actionType = #"theprose:share";
[act setObject:object forKey:#"theprose:post"];
[act setPhoto:photo forKey:#"image"];
// Create the content
FBSDKShareOpenGraphContent *content = [[FBSDKShareOpenGraphContent alloc] init];
content.action = act;
content.previewPropertyName = #"theprose:post";
[[FBSDKShareAPI shareWithContent:content delegate:nil] share];
Piecing together the answers from this page, this is what worked for me:
1. Check the Explicitly Shared box
Go to your open graph settings, action types and then choose your custom action. Scroll down to capabilities section and make sure that "explicitly share" box is checked.
2. Set fb:explicitely_shared On Action
[action setString:#"true" forKey:#"fb:explicitly_shared"];
3. Set the Relationship Between Action & Object
Make sure that you know the correct to connect your action to your object. In this case the key is "article":
[FBSDKShareOpenGraphAction actionWithType:#"mynamespace:share" object:object key:#"article"]
You can find that key by looking at the Action Type you created in your FB app's Open Graph settings. When you connected the Action with the Object via a Story, a new key for that relationship appears on the Action's page under the Property Name column.
The original poster is using the namespace:property_name format when what you really need is just the property_name for that key. This could be the fix for the OP.
4. Set the Delegate, Look For Errors
The OP is not taking advantage of the FBSDKSharingDelegate features. It reports errors and will help you fix the problem:
[[FBSDKShareAPI shareWithContent:content delegate:self] share];
And implement the delegate methods in self:
#pragma mark - FBSDKSharingDelegate
- (void) sharer:(id<FBSDKSharing>)sharer didCompleteWithResults:(NSDictionary *)results {
NSLog(#"Facebook sharing completed: %#", results);
}
- (void) sharer:(id<FBSDKSharing>)sharer didFailWithError:(NSError *)error {
NSLog(#"Facebook sharing failed: %#", error);
}
- (void) sharerDidCancel:(id<FBSDKSharing>)sharer {
NSLog(#"Facebook sharing cancelled.");
}
For Reference, Here's My Working Code
// Create the object
NSMutableDictionary *properties = [NSMutableDictionary dictionaryWithDictionary: #{
#"og:type": #"mynamespace:article",
#"og:title": myModel.title,
#"og:description": #"myModel.description",
#"og:url": #"http://mywebsite.com"
}];
NSURL *imageURL = [myModel getImageURL];
if (imageURL) {
FBSDKSharePhoto *photo = [FBSDKSharePhoto photoWithImageURL:imageURL userGenerated:NO];
[properties setObject:#[photo] forKey:#"og:image"];
}
FBSDKShareOpenGraphObject *object = [FBSDKShareOpenGraphObject objectWithProperties:properties];
// Create the action
FBSDKShareOpenGraphAction *action = [FBSDKShareOpenGraphAction actionWithType:#"mynamespace:share" object:object key:#"article"];
[action setString:#"true" forKey:#"fb:explicitly_shared"];
// Create the content
FBSDKShareOpenGraphContent *content = [[FBSDKShareOpenGraphContent alloc] init];
content.action = action;
content.previewPropertyName = #"article";
// Share the content
FBSDKShareAPI *shareAPI = [[FBSDKShareAPI alloc] init];
shareAPI.shareContent = content;
shareAPI.delegate = self;
[shareAPI share];
The same problem but works fine with FBSDKShareDialog under the same account. So the problem is in something else.
I got the same problem. I mean the reason in your code is, that you set the fb:explicitly_shared property in the object not in the concerning action.
The following code should solve the issue.
[action setString:#"true" forKey:#"fb:explicitly_shared"];
If your Facebook app is not public, make sure you have the test account added as a Test account, in the Roles section.
Make sure you have requested the publish_actions permission:
https://developers.facebook.com/docs/facebook-login/ios/permissions
You have no delegate assigned to your call, there is a high chance you are not getting the error returned by Facebook
Go to your open graph settings, action types and then choose your custom action. Scroll down to capabilities section and make sure that "explicitly share" box is checked.
It shouldn't work because there is a bug in FB with SDK versions before 4.1:
https://developers.facebook.com/bugs/943100005734949/
https://developers.facebook.com/bugs/1563738347248670
but with SDK version 4.1 this bug is fixed but the content for custom story/action/object was shown in very different way in compare with FSDKShareDialog (((
One more check to the checklist: FBSDKShareApi only works on the main thread. So make sure you are sharing from there.

Resources