---
title: OAuthStandardTokens
---

# OAuthStandardTokens

<a href="https://github.com/remix-run/remix/blob/remix@3.0.0-alpha.6/packages/auth/src/lib/provider.ts#L34" target="_blank">View Source</a>

## Summary

OAuth tokens that are not bound to DPoP key material.

## Signature

```ts
interface OAuthStandardTokens {
  accessToken: string;
  dpop?: undefined;
  expiresAt?: Date;
  idToken?: string;
  refreshToken?: string;
  scope?: string[];
  tokenType?: string;
}

```

## Properties

### accessToken

Access token returned by the provider.

### dpop

DPoP binding data is not present for non-DPoP tokens.

### expiresAt

Expiration time derived from the provider token response, when available.

### idToken

OpenID Connect ID token returned by the provider, when available.

### refreshToken

Refresh token returned by the provider, when available.

### scope

Scopes granted to the current access token, when provided by the provider.

### tokenType

Token type returned by the provider, such as `Bearer`.