You are here

public function InstagramUser::get_auth in Drupagram 7

Same name and namespace in other branches
  1. 6 drupagram.lib.php \InstagramUser::get_auth()

File

./drupagram.lib.php, line 679
Classes to implement the full Instagram API

Class

InstagramUser
Class for containing an individual Instagram user.

Code

public function get_auth() {
  return array(
    'password' => $this->password,
    'oauth_token' => $this->oauth_token,
    'oauth_token_secret' => $this->oauth_token_secret,
  );
}