我一直在梳理示例代码和在线教程,试图了解我在这里做错了什么,但我不知所措。我正在开发一个Proof of Concept android应用程序,通过REST API与蓝牙路由器集成。它要求我使用特定的HTTP Post消息使用后端进行Auth,并且我尝试复制此消息的所有尝试都失败了。
auth的发布消息如下:
Glide.with(context).load(url).asBitmap().into(new SimpleTarget<Bitmap>() {
@Override
public void onResourceReady(Bitmap resource, GlideAnimation<? super Bitmap> glideAnimation) {
// creating the image that maintain aspect ratio with width of image is set to screenwidth.
int width = imageView.getMeasuredWidth();
int diw = resource.getWidth();
if (diw > 0) {
int height = 0;
height = width * resource.getHeight() / diw;
resource = Bitmap.createScaledBitmap(resource, width, height, false);
}
imageView.setImageBitmap(resource);
}
});
我用来复制它的代码是:
POST api/oauth2/token HTTP/1.1
Host: demo.url.com
Headers: {Authorization: Basic dGVzdGVyOjEfhdjkejlhMmU4MjNjNDc=
Content-Type: application/x-www-form-urlencoded}
Body:
{grant_type=client_credentials}
任何帮助,或教程或示例代码的说明将不胜感激。
答案 0 :(得分:0)
这是设置连接时代码的样子。您的内容类型和授权是标题的一部分,将分开而不是您的身体
URL url = new URL("http://demo.url.com/api");
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("POST");
conn.setDoOutput(true);
conn.setRequestProperty ("Authorization", "Basic dGVzdGVyOjEfhdjkejlhMmU4MjNjNDc=");
conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
OutputStream os = conn.getOutputStream();
BufferedWriter writer = new BufferedWriter(new OutputStreamWriter(os, "UTF-8"));
writer.write("{grant_type=client_credentials}");
writer.flush();
writer.close();
os.close();
conn.connect();
您的Body参数不同,称为Request参数,并作为Writer Block的一部分。现在,我已经以与您正在进行的相同的硬编码方式完成了它,但您必须在稍后阶段对其进行自定义以适用于每个设备和参数。