import { clockSkew } from "https://deno.land/x/oauth4webapi@v3.1.2/mod.ts";
Use to adjust the assumed current time. Positive and negative finite values representing seconds
are allowed. Default is 0
(Date.now() + 0 seconds is used).
Examples
When the local clock is mistakenly 1 hour in the past
When the local clock is mistakenly 1 hour in the past
let client: oauth.Client = {
client_id: 'abc4ba37-4ab8-49b5-99d4-9441ba35d428',
// ... other metadata
[oauth.clockSkew]: +(60 * 60),
}
When the local clock is mistakenly 1 hour in the future
When the local clock is mistakenly 1 hour in the future
let client: oauth.Client = {
client_id: 'abc4ba37-4ab8-49b5-99d4-9441ba35d428',
// ... other metadata
[oauth.clockSkew]: -(60 * 60),
}