微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何将获取 x-csrf-token 的能力添加到此脚本中?

如何解决如何将获取 x-csrf-token 的能力添加到此脚本中?

此外,当我运行脚本时,它会收到回复“HTTP/1.1 200 OK”,但我使用的地址应该需要 x-csrf-token,所以很奇怪。 我试图做的是最终使用 x crsf 令牌发出正确的 get 请求并获得回复,然后我将其转换为字符串和可读输出

    package com.company;

import org.apache.http.httpentity;
import org.apache.http.HttpResponse;
import org.apache.http.auth.AuthScope;
import org.apache.http.auth.UsernamePasswordCredentials;
import org.apache.http.client.methods.HttpGet;
import org.apache.http.impl.client.DefaultHttpClient;
import org.apache.http.util.EntityUtils;

public class ClientAuthentication {

    public static void main(String[] args) throws Exception {
        DefaultHttpClient httpclient = new DefaultHttpClient();
        try {
            httpclient.getCredentialsProvider().setCredentials(
                    new AuthScope("url",443),new UsernamePasswordCredentials("username","pass"));


                    HttpGet httpget = new HttpGet("url");

            System.out.println("executing request" + httpget.getRequestLine());
            HttpResponse response = httpclient.execute(httpget);
            httpentity entity = response.getEntity();

            System.out.println("----------------------------------------");
            System.out.println(response.getStatusLine());
            if (entity != null) {
                System.out.println("Response: " + entity.getContentType());
            }
            EntityUtils.consume(entity);
        } finally {
            httpclient.getConnectionManager().shutdown();
        }
    }
}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。