2016-09-29 71 views
-2

我生成像按鈕,但是當我點擊像頁面時,它只顯示寫出的錯誤親切地幫我我的代碼。像點擊頁面上的錯誤

<html> 
 

 
<head> 
 
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
 
    <title>Login with Facebook using PHP by CodexWorld</title> 
 

 
    <style type="text/css"> 
 
    h1 { 
 
     font-family: Arial, Helvetica, sans-serif; 
 
     color: #999999; 
 
    } 
 
    </style> 
 
</head> 
 

 
<body> 
 
    <div> 
 
    <iframe src="https://www.facebook.com/plugins/like.php?ref=http://www.facebook.com/khappay.pk?ref=ts&fref=ts" scrolling="no" frameborder="0" style="border:none; width:450px; height:80px"></iframe> 
 
    </div> 
 

 
</body> 
 

 
</html>

+0

使用檢查發電機,以創建一個正確的代碼:https://developers.facebook.com/docs/plugins/like-button – CBroe

+0

我已經使用了相同的代碼生成器的鏈接也嘗試不同的方式,但不能成功 – sarfaraz

+1

不,代碼生成器不會拼錯參數名稱。 – CBroe

回答

0

您應該檢查你是從Facebook開發人員複製鏈接。

這應該工作:請fiddle

<iframe src="https://www.facebook.com/plugins/like.php?href=https://www.facebook.com/khappay.pk&width=77&layout=button_count&action=like&size=small&show_faces=false&share=false&height=21" width="77" height="21" style="border:none;overflow:hidden" scrolling="no" frameborder="0" allowTransparency="true"></iframe> 
+0