Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have created one Facebook app.
In page Tab URL I have specified a landing URL.
It is landing safely no issues.
Now I want if I click on liked button to call another landing page(dot net).

share|improve this question

1 Answer

up vote 1 down vote accepted

What you will have to do is read the signed_request passed to your tab application.

The signed_request will contain information on whether or not the current user "liked" the page that the app is on. Once you know if the user "liked" the page or not, in the even that s/he has already liked the page, you can redirect them to whatever URL you wish.

I see you have specified asp.net of which I have no knowledge, but I can tell you that the signed_request is passed to your application as a POST request. From there you need to parse the signed request and then you can read it's contents.

Here is a simple JavaScript redirect (in PHP) -

echo "<script language=javascript>";
echo "window.location.href ='".$url."';";
echo "</script>";
share|improve this answer
Thanks for prompt reply. Assume that i have got liked value. Now how can i change landing URL. My Current Default URL is abc.com/A.aspx Now i want to change it to abc.com/B.aspx I am deadly stuck here. – shatrughna Jul 15 '12 at 7:49
You just need to execute a redirect. I've added one method (with JavaScript) to my answer... I'm sure you can translate that from PHP to asp... – Lix Jul 15 '12 at 7:51
You can not change the landing URL... there is only one landing URL for a page tab application. You'll have to simulate a different landing page by means of the redirect... – Lix Jul 15 '12 at 7:53
I tried top.location.href but it is opening in complete window not inside canvas page. – shatrughna Jul 15 '12 at 7:55
1  
Thanks Lix. location.href is working. Thanks you so much. – shatrughna Jul 15 '12 at 8:05
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.