使用HtmlUnit从instagram获取访问令牌

时间:2015-09-25 18:08:21

标签: java instagram htmlunit htmlunit-driver

由于httpURLconnection没有切断,我切换到htmlUnit以编程方式获取auth代码以从instagram获取访问令牌,然后从那里做任何我需要的东西,事情是我被困在尝试从网址

中检索授权码
  

mysite.com/?code=ca1ec5b06a0b409293cff74ed9876a46

但我无法访问该链接,因为它似乎没有从授权网址重定向。这一个:

  

https://instagram.com/accounts/login/?force_classic_login=&next=/oauth/authorize/%3Fclient_id%CLIENT_ID%26redirect_uri%3Dhttp%3A//MYSITE.COM%26response_type%3Dcode

这是我尝试访问该网址的代码:

WebClient webClient = new WebClient(BrowserVersion.FIREFOX_38);
    webClient.getOptions().setJavaScriptEnabled(true);
    webClient.getOptions().setRedirectEnabled(true);
    webClient.getOptions().setThrowExceptionOnScriptError(false);
    webClient.getOptions().setCssEnabled(true);     
    HtmlPage page = (HtmlPage) webClient.getPage(authURL);
    WebResponse response = page.getWebResponse();
    String content = response.getContentAsString();
    System.out.println(page.getUrl());

1 个答案:

答案 0 :(得分:1)

我通过尝试获取授权网址而未登录网站解决了这个问题,然后当我被要求登录时,我使用htmlunit to get the html form to login to instagram,最后我可以使用代码获得所需的重定向网址。