我如何用邮递员上的–data-urlencode复制这个卷曲GET请求

我如何将-data-urlencode参数添加到邮递员,因为这是我的主要问题.

curl -X GET \
  -H "X-Parse-Application-Id: ${APPLICATION_ID}" \
  -H "X-Parse-REST-API-Key: ${REST_API_KEY}" \
  -G \
  --data-urlencode 'where={"playerName":"Sean Plott","cheatMode":false}' \
  https://api.parse.com/1/classes/GameScore

谢谢.

最佳答案 >在标题中提供-H值

>使用以下GET网址

https://api.parse.com/1/classes/GameScore?where={“playerName”:”Sean Plott”,”cheatMode”:false}

点赞