Facebook Javascript SDK uncaught TypeError: Cannot read property 'userID' of undefined - Stack Overflow

I am trying to implement an authorization feature using the Facebook JavaScript SDK. When I run it, it

I am trying to implement an authorization feature using the Facebook JavaScript SDK. When I run it, it and check the console I see the error.

uncaught TypeError: Cannot read property 'userID' of undefined 

Code snippet

<div id="fb-root"></div>
<!-- Load the Facebook JavaScript SDK -->
<script src="//connect.facebook/en_US/all.js"></script>
<script>
var appId = 'APP_ID';
var uid;

// Initialize the JS SDK
FB.init({
 appId: '413026618765431',
 cookie: true,
});

// Get the user's UID
FB.getLoginStatus(function(response) {
 uid = response.authResponse.userID ? response.authResponse.userID : null;
});

function authUser() {
 FB.login(function(response) {
   uid = response.authResponse.userID ? response.authResponse.userID : null;
 }, {scope:'email,publish_actions'});
}
</script>

I am trying to implement an authorization feature using the Facebook JavaScript SDK. When I run it, it and check the console I see the error.

uncaught TypeError: Cannot read property 'userID' of undefined 

Code snippet

<div id="fb-root"></div>
<!-- Load the Facebook JavaScript SDK -->
<script src="//connect.facebook/en_US/all.js"></script>
<script>
var appId = 'APP_ID';
var uid;

// Initialize the JS SDK
FB.init({
 appId: '413026618765431',
 cookie: true,
});

// Get the user's UID
FB.getLoginStatus(function(response) {
 uid = response.authResponse.userID ? response.authResponse.userID : null;
});

function authUser() {
 FB.login(function(response) {
   uid = response.authResponse.userID ? response.authResponse.userID : null;
 }, {scope:'email,publish_actions'});
}
</script>
Share Improve this question edited Dec 19, 2012 at 7:37 Joel Dean asked Dec 19, 2012 at 3:07 Joel DeanJoel Dean 2,4547 gold badges33 silver badges50 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 4

If the app is not authorized, then the response object will not contain an authResponse property - hence the error you're seeing.

What you want is

uid = response.authResponse 
  ? response.authResponse.userID 
  : null;

or simply

uid = response.authResponse && response.authResponse.userID || null;

or simply

uid = response.authResponse && response.authResponse.userID;

here is the line of code which works for me (iOS and Android) :

var uid = response.authResponse.userID || response.authResponse.userId;

userID was undefined for android, but userId is undefined for iOS.

Did you try response.authResponse.userId?

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743694420a4491511.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信