You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am calling /auth/facebook/callback?code={code} from my mobile application. This in theory should work, i am simulating the facebook callback to the website..
Using node-inspector i found out that i get http 400 from line 184 (oauth2.js) and message that contains redirect_uri isn't an absolute URI. Check RFC 3986.
After the code calls return p.fail({...}) from line 189 on file oauth2 the app causes a memory leak. (basically starts using about 1.4gb RAM, and 100% cpu.) Sounds like a while(true)?
This only time I am grateful for V8's memory limit :P.
The text was updated successfully, but these errors were encountered:
line 189 modules/oauth2.js
I am calling
/auth/facebook/callback?code={code}
from my mobile application. This in theory should work, i am simulating the facebook callback to the website..Using node-inspector i found out that i get http 400 from line 184 (oauth2.js) and message that contains
redirect_uri isn't an absolute URI. Check RFC 3986.
After the code calls
return p.fail({...})
from line 189 on file oauth2 the app causes a memory leak. (basically starts using about 1.4gb RAM, and 100% cpu.) Sounds like a while(true)?This only time I am grateful for V8's memory limit :P.
The text was updated successfully, but these errors were encountered: