我得到了一个 url ..www.abc.com/details
并被要求在这个 url 上使用 . 发送我的姓名和电话号码POST
。他们告诉我将内容类型设置为 application/json 并将正文设置为具有以下键的有效 JSON:
name: name of the user
phone number: phone number of the user
现在我不知道如何发送这个请求!会不会是这样的:
http://www.abc.com/details?method=post&name=john&phonenumber=445566
还是我必须使用java
发送相同的?
请帮忙