php-firebase-cloud-messaging
php-firebase-cloud-messaging copied to clipboard
Token Infos
Hi all
Possible to add something like this? That gives you information about a token...
public function tokenInfos($token) { $url = 'https://iid.googleapis.com/iid/info/' . $token . '?details=true';
return $this->guzzleClient->get( $url, [ 'headers' => [ 'Authorization' => sprintf('key=%s', $this->apiKey), 'Content-Type' => 'application/json' ], 'body' => '' ] );}
Thank you for your answer