/
Seamless methods that your game server issues to our server
Seamless methods that your game server issues to our server
Request validation
Each request is escorted with a query param "key" with a value of a sha1 cached query string and a salt key. Salt key should be generated on your side and provided at the start of integration. Valid characters are A-z, 0-9. Hashing should be done without any sorting of parameters.
The query param "key" value must match sha1([SALT KEY]+[QUERY STRING])
QUERY STRING does not need to be sorted before hashing.
Php code quick example
$data = array( 'callerId' => "danitestdev_s", 'callerPassword' => "hidden", .... whole query string ); $hash = sha1($salt.http_build_query($data)); $data['key'] = $hash;
, multiple selections available,
Related content
Seamless integration
Seamless integration
More like this
7) seamless player balance callback *
7) seamless player balance callback *
More like this
Frequently asked questions
Frequently asked questions
More like this
GameProvider integration to BOG
GameProvider integration to BOG
Read with this
Seamless wallet calls (balance, debit, credit, rollback)
Seamless wallet calls (balance, debit, credit, rollback)
More like this
Seamless player debit callback
Seamless player debit callback
Read with this