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.

When I give in the app id the redirect uri that I get will be a:

https://www.facebook.com/connect/login_success.html?code="some long code"

Usually like AQDv7kODxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxFUMAQqFdB4l9-Bu_AN34woXMmUzJCx8OwRflcxJ4nHmsWx6Z6jnD9IP2DSqnxIJymXB3GCm2FAeWsADV6fHf471KeC11UTSoQRTn4uqu-SsBjiWECL8Vrf0C8N8#_=_

How do I draw the access token from this code?

share|improve this question

1 Answer

If you have the url you can do like this. where actoken is your url

 public String getToken() {
        String myu = actoken;

        Pattern startAc = Pattern.compile("="), endAc = Pattern.compile("&");
        Matcher m = startAc.matcher(myu);
        Matcher m1 = endAc.matcher(myu);
        System.out.println(myu);
        while(m.find() && m1.find()) {

            actoken = myu.substring(m.start()+1,m1.end()-1);
        }
        return actoken;
    }
share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.