我正在使用NodeJS中的代码在Facebook上建立帐户链接。我已成功关联该帐户。我通过检查event.account_linking ==='linked'来检查帐户是否已链接。但是在登录事件之后,下一条消息在响应中没有event.account_linking。那么,如何检查用户的连续消息中是否链接了帐户?还可以像Alexa和Google一样将会话属性存储在Facebook中
<activity android:name=".DisableScreenRotationAndroid" android:screenOrientation="portrait">
在链接帐户之前: 我有:
let result1 = obj["Roles"].filter(function(item) { return arr.includes(item.code)}).map(filteredObj => filteredObj.fullname);
在帐户关联上: 我有:
event.account_linking && event.account_linking.status === 'linked'
发布帐户链接: 我有:
message:{},
recipient: {},
sender: {},
timestamp: 1231234123
所以问题是如何检查用户的连续消息请求中是否已关联帐户。