You are here

function LTIToolProviderOAuthDataStore::new_access_token in LTI Tool Provider 7

Get a new access token (not implemented).

Parameters

object $token: A token.

object $consumer: A consumer entity.

string $verifier: The verifier.

Return value

NULL Always null.

Overrides OAuthDataStore::new_access_token

File

./LTIToolProviderOAuthDataStore.class.php, line 102
Contains LTIToolProviderOAuthDataStore.

Class

LTIToolProviderOAuthDataStore
@file Contains LTIToolProviderOAuthDataStore.

Code

function new_access_token($token, $consumer, $verifier = NULL) {

  // Return a new access token attached to this consumer
  // for the user associated with this token if the request token
  // is authorized.
  // Should also invalidate the request token.
  return NULL;
}