Facebook App invites notification not working in i

2019-01-14 09:30发布

问题:

I had implemented Facebook App invites in Demo Application. It worked fine but did not get notification.

I have added all detail in my question, now can anyone tell me what is the issue in my code and what should I do to resolve this. I have created test users for testing this app.

This code works fine, it launches a dialogue box, showing the friend list and also shows that the app invite is sent but when I check it in friends account it doesn't show any notification.

My Info.plist File

I think I have a mistake in info.plsit under URL Type (URL Schemes). I had written action which is the name of the method but I don't have any idea what I should write in this column.

Appdelegate.m

- (BOOL)application:(UIApplication *)application
            openURL:(NSURL *)url   sourceApplication:(NSString *)sourceApplication
         annotation:(id)annotation {
    BFURL *parsedUrl = [BFURL URLWithInboundURL:url sourceApplication:sourceApplication];
    if ([parsedUrl appLinkData])
    {
        NSURL *targetUrl = [parsedUrl targetURL];
        [[[UIAlertView alloc] initWithTitle:@"Received link:"
                                    message:[targetUrl absoluteString]
                                   delegate:nil
                          cancelButtonTitle:@"OK"
                          otherButtonTitles:nil] show];
    }
        return YES; }

ViewController.h

Getting result null when appInviteDialog:(FBSDKAppInviteDialog *)appInviteDialog didCompleteWithResults:(NSDictionary *)results called

- (IBAction)action:(UIButton *)sender
{

    FBSDKAppInviteContent *content =[[FBSDKAppInviteContent alloc] init];
    content.appLinkURL = [NSURL URLWithString:@"https://fb.me/*****************"];

    [FBSDKAppInviteDialog showFromViewController:self withContent:content delegate:self];
}

 - (void)appInviteDialog:(FBSDKAppInviteDialog *)appInviteDialog didCompleteWithResults:(NSDictionary *)results
{
    NSLog(@" result %@",results);
}
- (void)appInviteDialog:(FBSDKAppInviteDialog *)appInviteDialog didFailWithError:(NSError *)error
{
    NSLog(@"error =  %@", error);
    NSString *message = error.userInfo[FBSDKErrorLocalizedDescriptionKey] ?:
    @"There was a problem sending the invite, please try again later.";
    NSString *title = error.userInfo[FBSDKErrorLocalizedTitleKey] ?: @"Oops!";

    [[[UIAlertView alloc] initWithTitle:title message:message delegate:nil cancelButtonTitle:@"OK" otherButtonTitles:nil] show];

}

回答1:

try having this in your AppDelegate.m

import this at the top:

#import <FBSDKCoreKit/FBSDKCoreKit.h>

and use this for the application:openurl:sourceapplication:annotation

- (BOOL)application:(UIApplication*)application openURL:(NSURL*)url sourceApplication:(NSString*)sourceApplication annotation:(id)annotation
{
    if (!url) {
        return NO;
    }

    [[FBSDKApplicationDelegate sharedInstance] application:application openURL:url sourceApplication:sourceApplication annotation:annotation];

    return YES;
}

This uses the facebook sdk to handle openurls instead of a custom handler.

This will trigger the delegate methods you have defined and then you can proceed to alert the user or do whatever you want.

Also in your info.plist the URLSchemes value needs to be the same as what you have in your facebook input 'url with a custom scheme'. For example if you have myapp:// in your 'url with a custom scheme' on the facebook dialogue then your URLScheme would be myapp (where you currently have action)

All that does is lets safari know that if you call 'myapp://' in the url bar then it should open your app. Unless your passing parameters to the app you dont need anything after the 'myapp://' in the facebook screen.

/-----SIDE NOTE-----/

Make sure in your developer settings (https://developers.facebook.com/apps/{{app-id}}/settings/) you have added the platform ios, and have set up both a bundle id and the iphone store id and ipad store id.

You can use any app id (the one from itunes connect, actually called 'apple id') for the iphone & ipad app id (just make sure its a valid one from the app store, names dont have to match) and use your bundle id for your app. The number for the iphone & ipad id can be the same. This is crucial as facebook doesnt deliver the notification to the user without this because it doesnt know where to send the user if they havent downloaded the app. Put this in and send another notification and it should work.

/----------SIDE NOTE 2-------------/

When using facebooks 'Quick Starts' to create the app invite link, make sure you are setting up the parameteres in the ios box correctly. Here is an example of what the setup should look like.(this is the link that looks like "https://fb.me/634411166661512")

The "Url with a custom scheme" needs to be the same whatever you have in your info.plist - using the answer above if you have "myapp" in your info.plist under URLSchemes you would put "myapp://" in the facebook "Url with a custom scheme". The app name can be anything, thats just for display. Although it says "App Store Id" is optional, it is required. Make sure you use the same one in here as you did above where you set your "iPad Store Id" and "iPhone Store Id". This tells apple to push the user to the itunes store if they do not have your app.



回答2:

Go to developer dashboard. select your app. add platform "Facebook canvas", set canvas url. Hope it works



回答3:

To get working notifications, go to the settings and add the required platforms. If you want to get notification on iOS native app than add "iOS" platform same for "Android" and for web add "Facebook Canvas". Add the required data for each platform and than try. Hope it will work.

Remember: For iOS and Android native apps, you must have to add the data of the live apps :)



回答4:

App Invites is only working on Mobile Platform. I was also facing same issue i was testing on Simulator to Web. Hope this will helps :)