This issue might not be related to AFNetworking specifically, but more in constructing an NSURLRequest. I am trying to issue the falling GET request using AFNetworking-
curl -X GET \
-H "X-Parse-Application-Id: Q82knolRSmsGKKNK13WCvISIReVVoR3yFP3qTF1J" \
-H "X-Parse-REST-API-Key: iHiN4Hlw835d7aig6vtcTNhPOkNyJpjpvAL2aSoL" \
-G \
--data-urlencode 'where={"playerName":"Sean Plott","cheatMode":false}' \
https://api.parse.com/1/classes/GameScore
This is from the parse.com API https://parse.com/docs/rest#queries-constraints.
However, I can't figure out how to write the
[AFHTTPClient getPath:parameters:success:failure:]
for this request. The where clause does not look like a dictionary, however this function only takes a dictionary for its parameter input.