curl -X POST \ -H "X-Parse-Application-Id: foo" \ -H "X-Parse-REST-API-Key: bar" \ -H "Content-Type: application/json" \ --data-binary '@src/assets/test.png' \ http://localhost:1337/parse/files/test.png How to send metadata with this post request? Like in JS SDK, we can do this by ``` const file = new Parse.File('myfile.zzz', fileData, 'image/png', metadata, tags); ```