Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this problem in NodeJs wherein

I send request using this whole url:

https://graph.facebook.com/oauth/authorize?
 response_type=code
 &scope=email,offline_access,read_stream,user_photos,friends_photos,user_photo_video_tags
 &client_id=APP_CLIENT_ID
 &redirect_uri=http://192.168.2.106:9042/verify/facebook

Then using the redirect uri, I trapped the code parameter or this:

http://192.168.2.106:9042/verify/facebook?
 code=AQBKRyyviY7qypu40B0SBWy6ELp2dF59lOOOnhDP1VF3INYCRTKE3Wh6-Tq422sdWghZLE8yOxqREbCw095k3zmObwii1nESOsFjGgQ_izddCzFgow888WCea6IIOjeQ3r3oHO-YiD8_H-3R_XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX#_=_

I use the code parameter to create another simple http.request() in NodeJs using this information to exchange the code to access_token

https://graph.facebook.com/oauth/access_token?
    client_id=YOUR_APP_ID
   &redirect_uri=YOUR_REDIRECT_URI
   &client_secret=YOUR_APP_SECRET
   &code=CODE_GENERATED_BY_FACEBOOK

My code looks like this:

_.req = _.http.request( {
            host:
                "graph.facebook.com",
            port:
                443, 
            path:
                "/oauth/access_token",
            method:
                "GET"
        } );
    _.req.on( "response",
        function( vfyfbresp ){
            _.vfyfbdata = "";
            vfyfbresp.on( "data",
                function( vfyfbchunk ){
                    console.log( "(verifyFacebook) Getting facebook chunk data: " 
                        + vfyfbchunk + "\n" );
                    _.vfyfbdata += vfyfbchunk
                } )
            .on( "end",
                function( ){
                    console.log( "(verifyFacebook) Response ending.\n"
                        + "(verifyFacebook) Facebook access information: "
                        + _.vfyfbdata + "\n" );

                } )
            .on( "close",
                    function( haserror ){
                        console.log( "(verifyFacebook) Response closing.\n" 
                            + "(verifyFacebook) Has error: "
                            + haserror + "\n" );
                    } )
                } );
    _.req.write( ( _.srvvfy = _.qs.stringify( {
            client_id:
                APP_CLIENT_ID,
            redirect_uri:
                "http://192.168.2.106:9042/verify/facebook",
            client_secret:
                APP_CLIENT_SECRET",
            code:
                authinfo.code
        } ) ) );
    console.log( "Query string: " + _.srvvfy );
    _.req.end( );

(A) My question is why I am recieving this error:

node.js:201
        throw e; // process.nextTick error, or 'error' event on first tick
              ^
Error: socket hang up
    at createHangUpError (http.js:1107:15)
    at Socket.<anonymous> (http.js:1210:27)
    at Socket.emit (events.js:88:20)
    at Array.0 (net.js:320:10)
    at EventEmitter._tickCallback (node.js:192:40)

(B) Did I do something wrong with my codes?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.