web_services: Refactor to remove dependency on Core.

This commit is contained in:
bunnei 2017-08-23 21:09:34 -04:00
parent 9f0da33c33
commit 04bd0c957e
5 changed files with 36 additions and 21 deletions

View file

@ -13,7 +13,11 @@ namespace WebService {
* Posts JSON to services.citra-emu.org.
* @param url URL of the services.citra-emu.org endpoint to post data to.
* @param data String of JSON data to use for the body of the POST request.
* @param allow_anonymous If true, allow anonymous unauthenticated requests.
* @param username Citra username to use for authentication.
* @param token Citra token to use for authentication.
*/
void PostJson(const std::string& url, const std::string& data);
void PostJson(const std::string& url, const std::string& data, bool allow_anonymous,
const std::string& username = {}, const std::string& token = {});
} // namespace WebService