How would one perform a HTTP POST request with Google's C++ Native Client?
相关问题
- Can you set the Location header in a chunked http
- What are the advantages ManageIQ has over OpenStac
- How can I make the angular.js route the long path
- .htaccess redirect all extension except css and ja
- Automatic authentication using Javascript?
相关文章
- File Upload of more than 4GB
- Returning plain text or other arbitary file in ASP
- how to Change glassfish application url
- How to handle dynamic elements using Robot Framewo
- How to create an installer for a Java EE Web appli
- How do you call a handler from your basehandler in
- How can I provide shared state to my Flask app wit
- Where to put META-INF/services/java.sql.Driver in
This question was asked a long time ago, but just in case anyone else is wondering the same thing:
You can use pp::URLRequstInfo::SetMethod to do a POST request.
And you can add data to the post using pp::URLRequestInfo::AppendDataToBody, pp::URLRequestInfo::AppendFileRangeToBody or pp::URLRequestInfo::AppendFileToBody.
See an example of using URLLoader class here: https://developers.google.com/native-client/devguide/coding/URLLoading