Take the 2-minute tour ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm struggling with knowing how to do the following. I want to do functionality similar to:

     --data-urlencode 'where={"playerName":"Jonathan Walsh"}' \
     --data-urlencode 'limit=100' \

but I would quite like to do this in one --data-urlencode request. Is this possible? And could someone show me what the url would look like?

Thanks

share|improve this question

1 Answer 1

up vote 4 down vote accepted

It will looks like:
https://api.parse.com/1/classes/GameScore?where={%22playerName%22:%22Jonathan%20Walsh%22}&limit=100

Your another question is using one request, or one --data-urlencode? FYI, you could use several --data-urlencode in one request.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.