omniauth-tiktok-loginkit 0.1.0 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d8b2ffe72f53ccfa1b75591363546ab768d90a4e65adc542f52d17e7afcfb03c
4
- data.tar.gz: a2868ee84dee7346d1e16fe1fda4fee4ccf6c25f3b89f452b36d0ea4bed9daea
3
+ metadata.gz: ec9efb4e7e1fd15d2a281eff5dd6fb51f7ab1beee097258f045d1afbfa26e940
4
+ data.tar.gz: 440617b46ff9e4f76b989bea6749c664bd8103bfe46a3e4f5c9ef3e10f630a48
5
5
  SHA512:
6
- metadata.gz: 0bacb2d0421d4792a4a785a10729c9d7ec99403ef0fdc7e0f0cc0baeef5f8915ef4caea73a77a76c269a04e0d9006aaa6e3d9488faff6a8612ce0d3a876b617d
7
- data.tar.gz: a8cffef59a1af571f071b76cf380fc16bed369b0bd6e7600409a5b88d25dcf0b0d6160b75650c21d7eb80596d25e3bcb0daf5a94f09e268397e6f1ec25ab8c99
6
+ metadata.gz: 968214817a2f1de8b5a4a90983711e8b44098fc0c7289c117da317f15acec3d8a720e5eb7d1154592c71e946bf3f045e83a23e65d6ee9065d71d956bace3479e
7
+ data.tar.gz: eecbd23794bff3a8038e9f13046183b2f1d3c5a170d5234d8661c9e7840b11f9ff7bb7c0a8ee0016322ec210da74b8b8a949ac4b633d258aede2c8abe05f1406
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module OmniauthTiktokLoginkit
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omniauth-tiktok-loginkit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Yin
@@ -52,7 +52,26 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: '1.0'
55
- description:
55
+ description: "# omniauth-tiktok-loginkit\n\nOmniAuth Strategy for TikTok [LoginKit](https://developers.tiktok.com/doc/login-kit-overview/)\n\nUsing
56
+ TikTok Oauth API v2.\n\n## Config\n\nConfigure with CLIENT_KEY and CLIENT_SECRET
57
+ from TikTok Developers Portal (https://developers.tiktok.com/apps/). Note CLIENT_KEY
58
+ is the value of \"Client Key\" field, not \"App ID\" on the portal.\n\nTikTok requires
59
+ apps to be approved by review before it can access any APIs, including the Oauth
60
+ APIs. Also any configuration change to the app will cause it to be back in \"Staging\"
61
+ status. So please configure all neccessary \"Redirect URI\" correctly before submitting
62
+ a review.\n\nTikTok also rejects any \"Test App\", so it's better to configure test
63
+ / dev environment redirect URI on the production app.\n\n```\nRails.application.config.middleware.use
64
+ OmniAuth::Builder do\n provider(\n :tiktok_loginkit, \n CLIENT_KEY,
65
+ \n CLIENT_SECRET,\n *options\n )\nend\n```\n\n...Or with devise
66
+ (https://github.com/heartcombo/devise#omniauth)\n\n```\n# config/initializers/devise.rb\nconfig.omniauth(\n
67
+ \ :tiktok_loginkit, \n CLIENT_KEY, \n CLIENT_SECRET, \n ...options\n)\n\n```\n\n##
68
+ Options\n\n* `name`: change endpoint to /auth/tiktok_another, /auth/tiktok_another/callback.
69
+ default: `\"tiktok_login\"`\n* `skip_info`: skip User Info API call to retrieve
70
+ `info` hash. default: `false`\n* `scope`: oauth scopes, seperated by comma. default:
71
+ `\"user.info.basic\"`\n\n\n## Usage\n\nExample of `request.env[\"omniauth.auth\"]`
72
+ can be found in the specs:\n\n* [with default scope: user.info.basic](https://github.com/layerssss/omniauth-tiktok-loginkit/blob/main/spec/omniauth/strategies/tiktok_loginkit_spec.rb#L108)\n*
73
+ [more detailed user info with scopes: user.info.basic,user.info.profile](https://github.com/layerssss/omniauth-tiktok-loginkit/blob/main/spec/omniauth/strategies/tiktok_loginkit_spec.rb#L263)\n\n##
74
+ License\n\nThe gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT)."
56
75
  email:
57
76
  - layerssss@gmail.com
58
77
  executables: []