omniauth-kakao 0.0.3 → 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +5 -5
- data/example/Gemfile.lock +1 -1
- data/lib/omniauth-kakao/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ebc6c7f547a1b32d0b72312e2e6b540d4134606f
|
|
4
|
+
data.tar.gz: f8c5e30ad633c32be0b447825baa9201ef2c9dcd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1097459c9c5660c46b774e67e5426e9863841b2b3e89b7fc14aaf2c308bb1554275af3496b98afbc565e9bae46b94b892df92d652e1a0af075aefd23224df638
|
|
7
|
+
data.tar.gz: d9a36ec4fea0114ad401070ce2db1ba69afac8de0a83ca2088022fc9c4f63f01964332e849d2bf8ddd6841d011e8c95ea9fac813aa2266e9f1670f736d16301b
|
data/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
This is the OmniAuth strategy for authenticating to [Kakao](http://www.kakao.com/). To
|
|
4
4
|
use it, you'll need to sign up for an REST API Key on the [Kakao Developers Page](http://developers.kakao.com). For more information, please refer to [Create New Application](https://developers.kakao.com/docs/restapi#시작하기-앱-생성) page.
|
|
5
5
|
|
|
6
|
-
[카카오](http://www.kakao.com/) 인증을 위한 OmniAuth strategy 입니다. [카카오 개발자 페이지](http://developers.kakao.com)에서 REST API 키를 생성한 뒤 이용해 주세요. 자세한 사항은 [시작하기 - 앱 생성](https://developers.kakao.com/docs/restapi#시작하기-앱-생성) 페이지를
|
|
6
|
+
[카카오](http://www.kakao.com/) 인증을 위한 OmniAuth strategy 입니다. [카카오 개발자 페이지](http://developers.kakao.com)에서 REST API 키를 생성한 뒤 이용해 주세요. 자세한 사항은 [시작하기 - 앱 생성](https://developers.kakao.com/docs/restapi#시작하기-앱-생성) 페이지를 참고하시기 바랍니다.
|
|
7
7
|
|
|
8
8
|
## Installing
|
|
9
9
|
|
|
@@ -23,7 +23,7 @@ Then `bundle install`.
|
|
|
23
23
|
|
|
24
24
|
Here's a quick example, adding the middleware to a Rails app in `config/initializers/omniauth.rb`:
|
|
25
25
|
|
|
26
|
-
다음은 간단한 예제입니다. `config/initializers/omniauth.rb`에서
|
|
26
|
+
다음은 간단한 예제입니다. `config/initializers/omniauth.rb`에서 미들웨어(Middleware)를 레일즈 어플리케이션에 넣어주세요.
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
```ruby
|
|
@@ -40,7 +40,7 @@ Then go to [My Application](https://developers.kakao.com/apps) page, select your
|
|
|
40
40
|
|
|
41
41
|
For more information, please read the [OmniAuth](https://github.com/intridea/omniauth) docs for detailed instructions.
|
|
42
42
|
|
|
43
|
-
자세한 사항은 [OmniAuth](https://github.com/intridea/omniauth)의 문서를 참고해 주세요.
|
|
43
|
+
더 자세한 사항은 [OmniAuth](https://github.com/intridea/omniauth)의 문서를 참고해 주세요.
|
|
44
44
|
|
|
45
45
|
## Example
|
|
46
46
|
|
|
@@ -58,9 +58,9 @@ Then open `http://localhost:4567/` in your browser.
|
|
|
58
58
|
|
|
59
59
|
이후 `http://localhost:4567/`로 접속하시면 됩니다.
|
|
60
60
|
|
|
61
|
-
Warning: Do not forgot to add `http://localhost:4567/` in
|
|
61
|
+
Warning: Do not forgot to add `http://localhost:4567/` in [My Application](https://developers.kakao.com/apps).
|
|
62
62
|
|
|
63
|
-
주의: [어플리케이션
|
|
63
|
+
주의: [내 어플리케이션](https://developers.kakao.com/apps) 의 '설정된 플랫폼 - 웹 - 사이트 도메인'에 `http://localhost:4567/`을 넣는 걸 잊지 마세요.
|
|
64
64
|
|
|
65
65
|
## Auth Hash
|
|
66
66
|
|
data/example/Gemfile.lock
CHANGED