2012-07-07 86 views
0

場可選我有我的Facebook註冊社交插件下面的代碼:如何使faccebook註冊插件

<iframe src="https://www.facebook.com/plugins/registration? 
     client_id=xxxxxxxxxxxxxxxx& 
      redirect_uri=http://www.pingxxxxxx.com/facebook_registration_plugin/fbwe/trial.php& 
      fields=[ 
{'name':'name'}, 
{'name':'email'}, 
{'name':'location'}, 
{'name':'gender'}, 
{'name':'birthday'}, 
{'name':'about',  'description':'About Youtself',    'type':'text'}, 
]" 
    scrolling="auto" 
    frameborder="no" 
    style="border:none" 
    allowTransparency="true" 
    width="100%" 
    height="330"> 
</iframe> 

我想要做的最後一個字段即「關於」可選用戶。此字段

 {'name':'about',  'description':'About Youtself',    'type':'text'}, 

有誰能告訴我如何做到這一點嗎?

+0

插件不允許你簡單地將該字段留空嗎? – Lix 2012-07-07 13:26:34

回答

1

要進行現場可選,您可以使用no_submit參數,如記錄在這裏:https://developers.facebook.com/docs/plugins/registration/advanced/

使用記載,頁面上的流量,你可選字段保存到通過JavaScript驗證回調的cookie。然後,當用戶在通過Facebook進行認證後回到您的網站時,您可以拿起並重新關聯Cookie中的數據和他們的帳戶。

就我所知,發送到Facebook的每個字段都必須存在。