0
내가 간단한 사용하여 응용 프로그램 페이스 북 탭 권한을 부여 FB.ui을 사용하고 페이지 탭에 FB.ui 설정하지 :의 OAuth 2.0 쿠키가
FB.init({
appId : '<%= Facebook::APP_ID %>',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true, // parse XFBML
channelUrl : 'http://<%= request.host_with_port %>/channel.html', // Custom Channel URL
oauth : true //enables OAuth 2.0
});
FB.ui({
method: 'oauth'
},
function(response) {
// do some redirect stuff here
});
권한 부여가 잘 진행하지만, 사용자가 응용 프로그램을 확인하는 경우에도 관련 fbsr_xxxxx 쿠키가 설정되지 않았습니다. 거기에 강제로 어떤 방법이 있습니까? 응답 객체에는 user_id가 있지만 signed_request와 함께 표준 흐름을 사용합니다.