I am trying to implement PlayIntegrity API to my Android app, but I don't know how to decrypt and verify the token using Google's servers.
I followed the documentation up to this point:
And now I am stuck on making the decode request to googleapis
. I don't understand how does this instruction work.
I created a Service Account and I downloaded JSON credentials file and put it into my Laravel project, then I tried this piece of code:
$client = new Client();
$client->setAuthConfig(storage_path('app/integrity_check_account.json'));
$client->addScope(PlayIntegrity::class);
$httpClient = $client->authorize();
$result = $httpClient->request('POST', 'https://playintegrity.googleapis.com/v1/my.package.name', [
'headers' => ['Content-Type' => 'application/json'],
'body' => "{ 'integrity_token': 'token' }"
]);
dd($result);
So I having two issues with this code:
- Am I adding the scope correctly?
- Am I making the request correctly? Because it is not working as I am getting 404 error.
I finally found the solution to my problem while looking at the source of the
PlayIntegrity API
from the Google APIs Client Library for PHP.After importing required dependencies:
This is my controller:
Possible return verdicts are explained here.