FBSDKAppLinkUtility

Class containing App Links related utility methods.

Superclass:NSObject
Declared in:FBSDKAppLinkUtility.h
Métodos de clase
fetchDeferredAppInvite:
+ (BOOL) fetchDeferredAppInvite:(FBSDKDeferredAppInviteHandler)handler __attribute__((deprecated("This method is no longer available.")));
Declarado en: FBSDKAppLinkUtility.h
fetchDeferredAppLink:

Call this method from the main thread to fetch deferred applink data if you use Mobile App Engagement Ads (https://developers.facebook.com/docs/ads-for-apps/mobile-app-ads-engagement). This may require a network round trip. If successful, the handler is invoked with the link data (this will only return a valid URL once, and future calls will result in a nil URL value in the callback).

ParámetroDescripción
handler

The handler to be invoked if there is deferred App Link data

+ (void) fetchDeferredAppLink:(FBSDKDeferredAppLinkHandler)handler;
Discussion:

The handler may contain an NSError instance to capture any errors. In the common case where there simply was no app link data, the NSError instance will be nil. This method should only be called from a location that occurs after any launching URL has been processed (e.g., you should call this method from your application delegate's applicationDidBecomeActive:).

Declarado en: FBSDKAppLinkUtility.h
Definiciones de tipo
FBSDKDeferredAppInviteHandler

Describes the callback for fetchOrganicDeferredAppLink.

typedef void (^FBSDKDeferredAppInviteHandler)(
NSURL *url);
Declarado en: FBSDKAppLinkUtility.h
FBSDKDeferredAppLinkHandler

Describes the callback for fetchDeferredAppLink.

typedef void (^FBSDKDeferredAppLinkHandler)(
NSURL *url,
NSError *error);
Discussion:

The url may also have a fb_click_time_utc query parameter that represents when the click occurred that caused the deferred App Link to be created.

Declarado en: FBSDKAppLinkUtility.h