c# - facebook getResponse() method - allow login -


i working on facebook. ask how getresponse() http page. have url facebook login login using c# application when click allow exploer page links error. why? doing wrong? should redirect page after client clicks allow? how programatically that? thx. in url have redirect option.

<script>      fb.init({          appid:'your_app_id', cookie:true,          status:true, xfbml:true       });      fb.api('/me', function(user) {        if(user != null) {           var image = document.getelementbyid('image');           image.src = 'https://graph.facebook.com/' + user.id + '/picture';           var name = document.getelementbyid('name');           name.innerhtml = user.name        }      });    </script> 

Comments

Popular posts from this blog

c# - how to write client side events functions for the combobox items -

exception - Python, pyPdf OCR error: pyPdf.utils.PdfReadError: EOF marker not found -