Frederick Behrends
Frederick Behrends

Reputation: 3095

DeepLink in Facebook Fanpage

i'm looking for a solution to proceced deeplinks to a facebook fanpage like:

http://www.facebook.com/myfanpage?sk=app_MYAPPID&parameter=2

I need to get the value of parameter in my Fanpage app.

Upvotes: 0

Views: 1950

Answers (2)

Xenon
Xenon

Reputation: 815

I don't understand clearly but what you want is getting parameters from url in facebook is not possible in pagetabs i tried it many times but it won't work.

The only way getting parameters from url in facebook is creating canvas app. Because canvas apps act like domain so you can use whole parameters and urls.

If i missunderstood sorry for it.

Upvotes: -1

Igy
Igy

Reputation: 43816

Use the app_data parameter in your link, and the value of this will be passed to your app in the signed_request which is sent on page load. Many developers use JSON encoded data as the value for app_data as they want to store multiple values

This is documented here: https://developers.facebook.com/docs/appsonfacebook/pagetabs/#integrating

Upvotes: 2

Related Questions