1.H5 登錄
1.1 使用jssdk登錄
1.2 手動配置登錄:類似于微信的先獲取code虱咧,后獲取access_token
前端獲取code :【get】https://www.facebook.com/v14.0/dialog/oauth?client_id={appid}&redirect_uri={encodeURIComponent(redirect_uri)}&state={state}
服務器端獲取access_token:【get】https://graph.facebook.com/v14.0/oauth/access_token?client_id={appid}&client_secret={secret}&redirect_uri={urlencode(redirect_uri)}&code={code}
注:redirect_uri:https://xxx.xxx.com/ [最后這個斜杠很重要,補全地址或帶上斜杠]
服務器端獲取用戶ID:https://graph.facebook.com/me?access_token={access_token}
2. H5 分享
配置應用域名