Andrew Dodson

Results 101 comments of Andrew Dodson

Hi @paulopmx You will have more luck with the next version https://github.com/MrSwitch/hello.js#try-out-the-next-version which defines api, login, logoff methods as Async.

Ok babel-polyfill might have worked also The facebook version is defined in https://github.com/MrSwitch/hello.js/blob/v2/src/modules/facebook.js#L11, easiest thing is to update hellojs to bump this.

Hi @irfan798 can you provide a reference to this feature, thanks

@irfan798 @elky yes we can get this included. Could you also update the Instagram demo page, test? Also I'm not familiar with the use case, what is the reason the...

Please refer to the facebook API specifically for those features. The me/friend endpoint will only return friends who are also members of the app you are using.

Print out e and see what you get.

Any parameters which are unrecognized when calling `hello.login` are appended to the initial request. ```js hello(network).login({ui_locales:'en'});` ``` You might prefer to hard bake it like you have, by alternatively assigning...

Please provide documentation reference for this

With login you can use 'force' as an option, e.g. `hello(network).login({force:true})`. Facebook also lets us inspect the permissions afterwards. i.e. use `facebook.api('me/permissions')` ``` javascript var facebook = hello('facebook'); facebook.login({ scope:...

@bobbyfisher928 You are meant to initiate `hello.login` with the scope and force attribute, not `hello.api` as you have done.