シングルトンに accessToken を格納するために AFOAuthcredential を使用します。シングルトンでこのコード行を使用して保存します。
[AFOAuthCredential storeCredential:newCredential withIdentifier:self.serviceProviderIdentifier];
私の質問は、exampleViewController.h にいて、GET 呼び出しを行うためのトークンを取得したい場合です。このクレデンシャルを取得するにはどうすればよいですか。
私のviewWillAppearで私のexampleViewController.hで私は呼び出します
theSingleton *singleton = [[theSingleton alloc] init];
AFOAuthCredential *credential = [AFOAuthCredential retrieveCredentialWithIdentifier:@"self.serviceProviderIdentifier"];
NSString *accessToken = [NSString stringWithFormat:@"%@", credential.accessToken];
accessToken が期限切れになるまでアプリに保存し、その後更新します。私の質問は、どのように私は自分のアプリの他の部分からretriveCredentialを呼び出し、有効なトークンを取得するのですか?