有一个向 Heroku 服务器发送请求的 android 应用程序:
Parse.initialize(
new Builder(this)
.applicationId("aaa")
.clientKey("bbb")
.server("https://xxx.herokuapp.com/parse")
.build()
);
如何在 cURL PHP 中实现的 GET/POST 请求中传递相同的参数(applicationId 和 clientKey)?
例如,像这样:
https://xxx.herokuapp.com/parse?application_id=aaa&client_key=bbb
我自己对 Heroku 服务的架构并不熟悉,我试图弄清楚什么样的 HTTPS 请求通过 Parse 发送到服务器。
我发现连接数据是在标头中传输的: