Sha256: d882ec1f560df261fc3cb30b496cc02922bbcad05004ced40cc6d1aa38dd177b

Contents?: true

Size: 555 Bytes

Versions: 6

Compression:

Stored size: 555 Bytes

Contents

module OAuth
  # request tokens are passed between the consumer and the provider out of
  # band (i.e. callbacks cannot be used), per section 6.1.1
  OUT_OF_BAND = "oob".freeze

  # required parameters, per sections 6.1.1, 6.3.1, and 7
  PARAMETERS = %w[oauth_callback oauth_consumer_key oauth_token
                  oauth_signature_method oauth_timestamp oauth_nonce oauth_verifier
                  oauth_version oauth_signature oauth_body_hash].freeze

  # reserved character regexp, per section 5.1
  RESERVED_CHARACTERS = /[^a-zA-Z0-9\-\.\_\~]/
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
oauth-0.5.14 lib/oauth/oauth.rb
oauth-0.5.13 lib/oauth/oauth.rb
oauth-0.5.12 lib/oauth/oauth.rb
oauth-0.5.11 lib/oauth/oauth.rb
oauth-0.5.10 lib/oauth/oauth.rb
oauth-0.5.9 lib/oauth/oauth.rb