Module: Lotrip::Foursquare
- Defined in:
- lib/foursquare.rb
Defined Under Namespace
Classes: Error, InvalidAuth, ServiceUnavailable
Constant Summary
collapse
- ERRORS =
{
"invalid_auth" => "OAuth token was not provided or was invalid.",
"param_error" => "A required parameter was missing or a parameter was malformed. This is also used if the resource ID in the path is incorrect.",
"endpoint_error" => "The requested path does not exist.",
"not_authorized" => "Although authentication succeeded, the acting user is not allowed to see this information due to privacy restrictions.",
"rate_limit_exceeded" => "Rate limit for this hour exceeded.",
"deprecated" => "Something about this request is using deprecated functionality, or the response format may be about to change.",
"server_error" => "Server is currently experiencing issues. Check status.foursquare.com for udpates.",
"other" => "Some other type of error occurred."
}
Class Method Summary
collapse
Class Method Details
.log(msg) ⇒ Object
15
16
17
18
|
# File 'lib/foursquare.rb', line 15
def self.log(msg)
return unless verbose?
puts "[foursquare] #{msg}"
end
|
.verbose=(setting) ⇒ Object
7
8
9
|
# File 'lib/foursquare.rb', line 7
def self.verbose=(setting)
@verbose = setting
end
|
.verbose? ⇒ Boolean
11
12
13
|
# File 'lib/foursquare.rb', line 11
def self.verbose?
@verbose
end
|