2016-08-17 61 views
0

我想通過電子郵件營銷在Facebook上分享圖片,但我無法在分享後重定向。在Facebook上分享圖片並將其重定向到粉絲頁面

我在電子郵件中插入代碼是:

<!DOCTYPE html> 
    <html> 
     <head> 
      <meta charset='utf-8' /> 
      <title>My Title</title> 
     </head> 
     <body bgcolor='#eaeaea' style='font-family:Verdana'> 
      <div> 
       <a href='http://www.facebook.com/dialog/share?app_id=MY_APP_ID&amp;href=URL_IMAGE&amp;redirect_uri=https://www.facebook.com/FAN_PAGE&amp;display=page'><div>Please share this image with your friends on Facebook:</div><BR><div><IMG SRC='URL_IMAGE'></a> 
      </div> 
     </body> 
    </html> 

,我感到我不能重定向到URL錯誤。

我在應用程序中配置了存儲圖像的網站的URL,但我無法重定向到Facebook上的粉絲頁面。

回答

1

我認爲它是這個錯誤:

Can't Load URL: The domain of this URL isn't included in the app's domains. To be able to load this URL, add all domains and subdomains of your app to the App Domains field in your app settings.

看來你不容直接重定向到一個facebook.com網址,你必須重定向到自己的外部網站,而不是 - 你必須添加該應用設置中的該網址/域名。作爲一種解決方法,您可以實現從外部網站到粉絲頁面的簡單重定向。

+0

嗨,謝謝!是的,這是正確的,但爲什麼我不能重定向到我的粉絲頁面? – Patrick

+1

,因爲這是Facebook如何實現它;) – luschn

+0

這是非常的... – Patrick