Sha256: 5e0472e90ca88365430fac9ccfacc50cff4660c1d212a87a572cd8733c784ceb
Contents?: true
Size: 489 Bytes
Versions: 19
Compression:
Stored size: 489 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" # 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) # reserved character regexp, per section 5.1 RESERVED_CHARACTERS = /[^a-zA-Z0-9\-\.\_\~]/ end
Version data entries
19 entries across 19 versions & 13 rubygems