You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The expiry header is empty when enabling change_headers.
I used the environment: ruby 2.1.5p273 and found that the expiry header is not correct build based on the auth_header tokens var
The expiry header is empty when enabling change_headers.
I used the environment: ruby 2.1.5p273 and found that the expiry header is not correct build based on the auth_header tokens var
user.rb:
def build_auth_header(token, client_id='default')
....
expiry = self.tokens[client_id]['expiry'].to_s
To solve the problem i change
expiry = self.tokens[client_id][:expiry].to_s
The text was updated successfully, but these errors were encountered: