-
- All Implemented Interfaces:
-
com.facebook.bolts.AppLinkResolver
public class FacebookAppLinkResolver implements AppLinkResolverProvides an implementation for the AppLinkResolver interface that uses the Facebook App Link index to resolve App Links given a URL. It also provides an additional helper method that can resolve multiple App Links in a single call.
-
-
Method Summary
Modifier and Type Method Description Task<AppLink>getAppLinkFromUrlInBackground(Uri uri)Asynchronously resolves App Link data for the passed in Uri Task<Map<Uri, AppLink>>getAppLinkFromUrlsInBackground(List<Uri> uris)Asynchronously resolves App Link data for multiple URLs -
-
Method Detail
-
getAppLinkFromUrlInBackground
Task<AppLink> getAppLinkFromUrlInBackground(Uri uri)
Asynchronously resolves App Link data for the passed in Uri
- Parameters:
uri- Uri to be resolved into an App Link
-
getAppLinkFromUrlsInBackground
Task<Map<Uri, AppLink>> getAppLinkFromUrlsInBackground(List<Uri> uris)
Asynchronously resolves App Link data for multiple URLs
- Parameters:
uris- A list of Uri objects to resolve into App Links
-
-
-
-