Skip to content

Commit

Permalink
stringify jwt secret, faraday does not do so automatically
Browse files Browse the repository at this point in the history
  • Loading branch information
nov committed Oct 14, 2022
1 parent a133d49 commit 660ba5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/apple_id/client.rb
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def client_secret_jwt
exp: 1.minutes.from_now
)
jwt.kid = key_id
jwt.sign(private_key)
jwt.sign(private_key).to_s
end

def setup_required_scope(scopes)
Expand Down

0 comments on commit 660ba5f

Please sign in to comment.