我跟着this link在我的Laravel项目中使用JWT-Auth直到第4步,并用我自己的验证和
调用替换了步骤5中的身份验证逻辑$token = JWTAuth::fromUser($user);
当我尝试调用此登录时,我收到一个例外:
Could not create token: The algorithm 'HS256' is not supported for OpenSSL
使用here提到的任何算法都会出现这种情况。
有人知道我做错了吗?
答案 0 :(得分:0)
我能够通过在jwt-auth包上进行composer-remove并再次添加来解决这个问题。