How to redirect facebook fanpage like this?

they are using a page app called "static html" you can put a redirect on there. when sharing their link they will be sharing the tab link.

You used to be able to make the tab the default landing for your page but i'm sure you can't anymore.
 
You can easily see the source code

Look what I got for you from that very same page:

[TD="class: line-number"][/TD]
[TD="class: line-content"]
<!DOCTYPE html><html><head><title>Facebook Page Proxy</title></head><body><form method="post" id="proxy_form"><input type="hidden" autocomplete="off" id="signed_request" name="signed_request" /></form><script>document.domain = 'facebook.com';var frameName=window.location.href.split('#')[1];function submitForm(a,b){var c=document.getElementById("proxy_form");c.setAttribute("action",a);c.setAttribute("target",frameName);var d=document.getElementById("signed_request");d.setAttribute("value",b);c.submit();}function waitForParams(){var a=parent.PlatformAppController?parent.PlatformAppController.getFrameParams(frameName):null;if(a){submitForm(a.appTabUrl,a.signedRequest);}else setTimeout(waitForParams,10);}waitForParams();</script></body></html>

It is a simple redirect, you can do different sort of redirects. Also you can do some sort of iframe breaker.

For instance: your landing page with an advertorial checks, whether the site is being loaded within in iframe (through the facebook fan page) and if so, load the page new in the browser[/TD]
 
is this allowed on Facebook? i noticed this page has been banned.
 
they are using a page app called "static html" you can put a redirect on there. when sharing their link they will be sharing the tab link.

You used to be able to make the tab the default landing for your page but i'm sure you can't anymore.


You mean this thing cannot be done anymore? I saw many use this redirect now. Some is banned, but it's rinse and repeat. Looks like easy to duplicate


You can easily see the source code

Look what I got for you from that very same page:

[TD="class: line-number"][/TD]
[TD="class: line-content"]It is a simple redirect, you can do different sort of redirects. Also you can do some sort of iframe breaker.

For instance: your landing page with an advertorial checks, whether the site is being loaded within in iframe (through the facebook fan page) and if so, load the page new in the browser[/TD]

Where to load the code? Also I don't see the url redirect's destination.. where can I put it?


EDIT: here I found one that isn't banned yet https://www.facebook.com/Work-At-Ho...?app_data=visitor_mode&sk=app_190322544333196

can someone please shed some light on how to create such page? :)
 
Last edited:
Guys can help me? I have tried several code but none work as I wish

by html :


<!DOCTYPE html>
<HTML>

<HEAD>
<TITLE>Welcome</TITLE>
<meta http-equiv="refresh" content="2; url=http://www.somewhere.com/" />
</HEAD>

<BODY>
Welcome
</BODY>

</HTML>


and JAVASCRIPT


(function(){
setTimeout(function(){
window.location="http://somewhere.com/";
},3000); /* 1000 = 1 second*/
})();



both redirect after interval I set but still inside facebook page.... please help me add the code so it redirect and not shown inside facebook page but new full page.. I prefer javascript if can....
 
Code:
[COLOR=#494949]<script type="text/javascript">[/COLOR]	<!--
		if (top.location!= self.location) {
			top.location = self.location.href
		}
	//--> [COLOR=#494949]</script>[/COLOR]
 
Back
Top