Facebookアプリケーションで問題が発生しました。アプリケーションは現在公開されており、Facebookから電子メールを受け取りました。
アプリで次のポリシー違反が見つかりました。2012年4月17日火曜日の午後5時(太平洋標準時)までにこの問題に対処する必要があります。そうしないと、アプリが強制措置の対象となる可能性があります。
Googleのポリシーでは、アプリに、使用するユーザーデータと、そのデータの使用、表示、共有、転送の方法をユーザーに通知するプライバシーポリシーが必要であり、プライバシーポリシーのURLをデベロッパーアプリケーションに含める必要があります(プラットフォームを参照)。ポリシーII.3、http: //developers.facebook.com/policy )。
アプリの権限ダイアログにプライバシーポリシーがないことがわかりました。開発者アプリケーションのプライバシーポリシーのURLフィールドをdevelopers.facebook.com/apps/[YOUR_APP_ID]/authで更新してください。また、アプリを確認して、ウェブサイトまたはアプリ内にもプライバシーポリシーが表示されていることを確認してください。
私のアプリは基本的なユーザー情報のみを使用しています。
基本ユーザー認証にJavascriptSDKを使用していますが、ユーザーに正しい権限を要求する方法がわかりません。
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '[APPID]', // App ID
channelUrl : '[URL]', // Channel File
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
var login = false;
FB.getLoginStatus(function(response) {
if (response.status === 'connected') {
console.log('connected');
login=true;
// the user is logged in and connected to 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{
FB.login(function(response) {
if (response.authResponse) {
console.log('Welcome! Fetching your information.... ');
FB.api('/me', function(response) {
console.log('Good to see you, ' + response.name + '.');
if(login===false)
{
window.open("http://www.facebook.com/EnergyZuerich/app_332399760133904", "_top");
}
//window.location.href=window.location.href;
//FB.logout(function(response) {
//console.log('Logged out.');
//});
});
} else {
console.log('User cancelled login or did not fully authorize.');
}
}, {scope: 'email'});
}});
// Additional initialization code here
};
(function() {
var e = document.createElement('script');
e.async = true;
e.src = document.location.protocol +
'//connect.facebook.net/en_US/all.js';
document.getElementById('fb-root').appendChild(e);
}());
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
d.getElementsByTagName('head')[0].appendChild(js);
}(document));
</script>
誰か助けてもらえますか?