使用openssl_verify在php中的FCM签名验证错误

时间:2016-11-09 14:19:08

标签: php token jwt

我是JWT的新手,我正在尝试验证php中的FCM ID令牌签名。 这是从here浏览的公钥。

string
解码后的标头和有效负载数据完全正常,但如果我尝试验证签名,则会抛出以下错误

if(condition,then,else) :- condition, !, then.
if(_,_,else) :- else.

createBombs(B,Q) :-
    Li = [],
    C is Q,
    repeat,
    random(1,10,X),
    random(1,10,Y),
    print(C),
    if(member([X,Y],B),C is C +1,insert([X,Y],Li,B)),
    C is C -1,
    C >= 0.

insert(X,L,[X|L]).

我正在使用我在github中找到的jwt-php https://github.com/firebase/php-jwt

请告诉我我做错了什么?

0 个答案:

没有答案