Merge pull request #36 from jpcid/patch-1

Update phpapi-tutorial.md
This commit is contained in:
Sebastian Iacomuzzi 2014-02-24 11:49:22 -02:00
Родитель 9a5ad094ed 479955eb2b
Коммит f358154c6b
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -9,7 +9,7 @@ Install the following package from composer
On your protected APIs, add a check like the following:
// validate the token
$token = str_replace($_SERVER['Authorization'], 'Bearer ', '')
$token = str_replace('Bearer ', '', $_SERVER['Authorization'])
$secret = "@@account.clientSecret@@"
$decoded_token = JWT::decode($token, base64_decode(strtr($secret, '-_', '+/')) );