るりまサーチ

最速Rubyリファレンスマニュアル検索!
77件ヒット [1-77件を表示] (0.103秒)

別のキーワード

  1. uri build
  2. uri extract
  3. uri new
  4. open-uri open
  5. uri regexp

ライブラリ

クラス

モジュール

キーワード

検索結果

URI::Generic#password -> String | nil (29118.0)

自身の password を文字列で返します。設定されていない場合は nil を返します。

...自身の password を文字列で返します。設定されていない場合は nil を返します。...

URI::Generic#password=(s) (17136.0)

自身の password を設定します。

... password を設定します。

自身に user が設定されていない場合には例外が発生します。

@param s 自身の password を表す文字列を指定します。

@raise URI::InvalidComponentError 不正な引数 s に対して発生します。

@raise URI::InvalidURIError...

URI::Generic#userinfo=(s) (11037.0)

自身の userinfo を設定します。

..."username" か "username:password" という形式の文字列、あるいは
[username, password] という形式の文字列の配列で指定します。

@raise URI::InvalidComponentError 不正な引数 s に対して発生します。

@raise URI::InvalidURIError userinfo と registr...
...y を同時に設定した場合に発生します。

例:
require 'uri'
u = URI.parse('http://example.com/')
u.userinfo = 'hoge-san:jfae82kj'
p u.to_s #=> "http://hoge-san:jfae82kj@example.com/"

u.userinfo = 'oreore'
p u.to_s #...

URI::Generic#userinfo -> String | nil (11017.0)

自身の userinfo を "username:password" という形式の文字列で返します。 設定されていない場合は nil を返します。

...自身の userinfo を "username:password" という形式の文字列で返します。
設定されていない場合は nil を返します。...

URI::Generic#user -> String | nil (11007.0)

自身の userinfo を文字列で返します。

...自身の userinfo を文字列で返します。

userinfo が「username:password」の形式である場合は、username 部を返します。
設定されていない場合は nil を返します。...

絞り込み条件を変える

Net::HTTPHeader#proxy_basic_auth(account, password) -> [String] (138.0)

Proxy 認証のために Proxy-Authorization: ヘッダをセットします。

...字列で与えます。
@param password パスワードを文字列で与えます。

//emlist[例][ruby]{
require 'net/http'

uri
= URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.new(uri.request_uri)
req.proxy_basic_auth("account", "password") # => ["Basic YWNjb3VudDpwYXNzd29...

Net::HTTPHeader#basic_auth(account, password) -> [String] (132.0)

Authorization: ヘッダを BASIC 認証用にセットします。

...アカウント名を文字列で与えます。
@param password パスワードを文字列で与えます。

//emlist[例][ruby]{
require 'net/http'

uri
= URI.parse('http://www.example.com/index.html')
req = Net::HTTP::Get.new(uri.request_uri)
req.basic_auth("user", "pass") # => ["Basic dXNlcjpw...