Reputation:
I'm using facebook dialog request to send invite to my friend.
When my friend click my invite,this is how the URL is
http://apps.facebook.com/appname/?request_ids=w453sdfdsfdzfsa5345324&ref=notif¬if_t=app_request
But,i've a functionality which checks whether the user has liked the page or not.
My else part shows,if user has n't like the page.When my friends click my invite,it is showing him the else part because it is out of facebook brand page.
When my friends click my invite,the URL should be like this
Is it possible to do this?
Upvotes: 0
Views: 1601
Reputation: 1631
Application requests (per their name) automatically redirect to the canvas URL of the application that created the Requests dialog (see the User Response section in the documentation). There is no way to change this to your Facebook Page or any other URL.
A possible solution would be to check whether the request_ids
parameter exists after a user visits your application, and then automatically redirect users to your Facebook page after deleting their apprequest.
Upvotes: 1