1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

WEBAPIサイトへのBASIC認証につきまして

Posted at

またいきずまってしまいました。御教授ください。

ユーザー許可リストで取得したAuthorization Codeを利用することはわかっているのですが、

Basic認証のコードのユーザー名には何を設定するのでしょうか。

Yahoo Japan IDを設定してAPIを呼びましたが、401が返ってきます。

【コードフラグメント】

httpclient = new DefaultHttpClient();

    	Credentials credentials = new UsernamePasswordCredentials(とりあえずYahoo Japan ID,auth);
    	AuthScope scope = new AuthScope(TARGET_HOST, 443);
    	httpclient.getCredentialsProvider().setCredentials(scope, credentials);

■ authは、
String auth = yconnect.getAuthorizationCode(state);
を使っています。

宜しくお願い致します。

1
2
5

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?