将自定义标头数据添加到 Android HTTP 请求
我将在 Android 应用程序中发出 HTTP 请求。我想添加一些自定义标头数据。具体来说,我将使用票证来跟踪授权请求(我这样做是为了让事情保持 RESTful)。我希望能够将其添加到 HTTP 标头中
ticketId : someTicketId
在 android 中执行此操作的最简单方法是什么?
I'm going to be making HTTP requests in an android application. There is some custom header data that I'd like to add. Specifically, I'm going to be using tickets to track authorized requests (I'm doing this so I can keep things RESTful). I'd like be able to basically add this to the HTTP header
ticketId : someTicketId
What is the simplest way to do this in android?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您想使用 apache 堆栈,Brians 无疑是正确的。但是,如果您想使用 HttpURLConnection,这个函数也能达到目的。
Brians is certainly correct for if you wanna use the apache stack. If you however want to use HttpURLConnection, this function will also do the trick.
这个函数看起来可以解决问题。
This function looks like it will do the trick.