現在使用されているFacebookアプリケーションのインストール時間のみでJSAPIを使用するにはどうすればよいですか?
一般的に、現在オンラインになっているユーザーが新規ユーザーであり、まだ登録されていないリピーターであることを確認したいと思います。
現在使用されているFacebookアプリケーションのインストール時間のみでJSAPIを使用するにはどうすればよいですか?
一般的に、現在オンラインになっているユーザーが新規ユーザーであり、まだ登録されていないリピーターであることを確認したいと思います。
ここFB.getLoginStatus
で推奨されているように使用すると、天気予報の訪問者が facebook にログインしていることがわかります。ログインしている場合は、アプリケーションに登録されています。
FB.getLoginStatus(function(response) {
if (response.status === 'connected') {
// the user is logged in and has authenticated your
// app, and response.authResponse supplies
// the user's ID, a valid access token, a signed
// request, and the time the access token
// and signed request each expire
var uid = response.authResponse.userID;
var accessToken = response.authResponse.accessToken;
} else if (response.status === 'not_authorized') {
// the user is logged in to Facebook,
// but has not authenticated your app
} else {
// the user isn't logged in to Facebook.
}
});