Hi!
I am trying to get started; and I have this very simple code :
var Facebook = require('facebook-node-sdk')
var facebook = new Facebook({
appID: 'my app id',
secret: 'my app secret'
})
facebook.api('/me', function(err, data) {
console.log(err, data)
})
I don't know what's the problem, but I keep getting this error :
{ result:
{ error:
{ message: 'Invalid OAuth access token signature.',
type: 'OAuthException',
code: 190 } },
code: 0,
message: 'Invalid OAuth access token signature.' }
did I miss something very basic?
Hi!
I am trying to get started; and I have this very simple code :
I don't know what's the problem, but I keep getting this error :
did I miss something very basic?