php-firebase-cloud-messaging icon indicating copy to clipboard operation
php-firebase-cloud-messaging copied to clipboard

Token Infos

Open ucola opened this issue 6 years ago • 0 comments

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

ucola avatar Jun 26 '19 15:06 ucola