omniauth-tumblr 0.1 → 1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -0
- data/README.md +8 -5
- data/lib/omniauth-tumblr/version.rb +1 -1
- metadata +4 -4
data/.gitignore
CHANGED
data/README.md
CHANGED
@@ -3,17 +3,19 @@ OmniAuth Tumblr
|
|
3
3
|
|
4
4
|
This gem is an OmniAuth 1.0 Strategy for authenticating with the [Tumblr API](http://developers.tumblr.com)
|
5
5
|
|
6
|
+
An example Rails application is available:
|
7
|
+
<https://github.com/jamiew/omniauth-rails-app>
|
8
|
+
|
6
9
|
|
7
10
|
Usage
|
8
11
|
-----
|
9
12
|
|
10
|
-
Register your application with Tumblr. *Important*: specify a default callback URL
|
11
|
-
Tumblr will throw 400 Bad Request errors. Any URL is fine.
|
13
|
+
Register your application with Tumblr. *Important*: you must specify a default callback URL,
|
14
|
+
or Tumblr will throw 400 Bad Request errors despite the `?oauth_callback` param. Any URL is fine.
|
12
15
|
|
13
|
-
Get started by adding the Tumblr strategy to your `Gemfile
|
16
|
+
Get started by adding the Tumblr strategy to your `Gemfile`:
|
14
17
|
|
15
18
|
```ruby
|
16
|
-
gem 'omniauth'
|
17
19
|
gem 'omniauth-tumblr'
|
18
20
|
```
|
19
21
|
|
@@ -37,6 +39,7 @@ end
|
|
37
39
|
License
|
38
40
|
-------
|
39
41
|
|
42
|
+
Copyright (c) 2011 Jamie Wilkinson
|
43
|
+
|
40
44
|
This source code released under an MIT license.
|
41
45
|
|
42
|
-
(c) 2011 Jamie Wilkinson
|
metadata
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: omniauth-tumblr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 15
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
|
-
- 0
|
8
7
|
- 1
|
9
|
-
|
8
|
+
- 0
|
9
|
+
version: "1.0"
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Jamie Wilkinson
|
@@ -14,7 +14,7 @@ autorequire:
|
|
14
14
|
bindir: bin
|
15
15
|
cert_chain: []
|
16
16
|
|
17
|
-
date: 2011-
|
17
|
+
date: 2011-12-01 00:00:00 Z
|
18
18
|
dependencies:
|
19
19
|
- !ruby/object:Gem::Dependency
|
20
20
|
name: omniauth-oauth
|