gpt4 book ai didi

java - 如何获得 Salesforce Oauth 响应?

转载 作者:行者123 更新时间:2023-11-30 11:15:39 24 4
gpt4 key购买 nike

我按照教程向 Salesforce 发送访问 token 请求。但我不知道如何得到回应。我的代码如下:

    String baseUrl = "https://login.salesforce.com/services/oauth2/token";

PostMethod method = new PostMethod(baseUrl);

HttpMethodParams params = new HttpMethodParams();

StringBuilder content = new StringBuilder();
content.append("grant_type=password");
content.append("&client_id=3MVG9Y6d_Btp4xp7iNInduj8sD72efFl1ge.T8VS9JGJGrWqlNQt2mdP5qFzUdIay56PHFWSO65aFnYLhpTS_");
content.append("&client_secret=4522939082487299040");
content.append("&username=vuong.tran@enclave.vn");
content.append("&password=vuong92dnKk2VykEJnVfj5Dps0as9XmRFV");

method.setRequestEntity(new StringRequestEntity(content.toString(), "text/plain", "UTF-8"));
method.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");

HttpClient client = new HttpClient();
client.executeMethod(method);

请帮忙。

最佳答案

执行后

client.executeMethod(method);

您可以从作为参数传递的 PostMethod 对象获得响应,例如:

String response = method.getResponseBodyAsString();

可以找到文档here .

关于java - 如何获得 Salesforce Oauth 响应?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25276771/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com