0
我正在使用LinkedIn訪問令牌,但給出它有60天的到期時間。 我已經使用code samples from linkedin developer forum的代碼,但我想要在多少天訪問令牌將過期。有人可以幫助如何找到訪問令牌的到期時間。如何找到LinkedIn訪問令牌的到期時間?
謝謝
我正在使用LinkedIn訪問令牌,但給出它有60天的到期時間。 我已經使用code samples from linkedin developer forum的代碼,但我想要在多少天訪問令牌將過期。有人可以幫助如何找到訪問令牌的到期時間。如何找到LinkedIn訪問令牌的到期時間?
謝謝
Linkedin oauth存取令牌的壽命爲60天。
您將得到越來越訪問令牌的細節,如
{"expires_in":5184000,"access_token":"AQXdSP_W41_UPs5ioT_t8HESyODB4FqbkJ8LrV_5mff4gPODzOYR"}
參數expires_in的值是秒數量從現在開始,這會的access_token在到期(5184000秒爲60天)。
有關詳細信息: - https://developer.linkedin.com/documents/authentication
,如果我得到「expires_in」與道理,是沒有辦法在一個變量本地存儲這種「expires_in」值,這樣我可以使用進一步的計算該值。 – user3837266