Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

omniauth-tiktok-loginkit

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

omniauth-tiktok-loginkit

  • 1.0.0
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

omniauth-tiktok-loginkit

OmniAuth Strategy for TikTok LoginKit

Using TikTok Oauth API v2.

Config

Configure with CLIENT_KEY and CLIENT_SECRET from TikTok Developers Portal (https://developers.tiktok.com/apps/). Note CLIENT_KEY is the value of "Client Key" field, not "App ID" on the portal.

TikTok requires apps to be approved by review before it can access any APIs, including the Oauth APIs. Also any configuration change to the app will cause it to be back in "Staging" status. So please configure all neccessary "Redirect URI" correctly before submitting a review.

TikTok also rejects any "Test App", so it's better to configure test / dev environment redirect URI on the production app.

Rails.application.config.middleware.use OmniAuth::Builder do
    provider(
        :tiktok_loginkit, 
        CLIENT_KEY, 
        CLIENT_SECRET,
        *options
    )
end

...Or with devise (https://github.com/heartcombo/devise#omniauth)

# config/initializers/devise.rb
config.omniauth(
    :tiktok_loginkit, 
    CLIENT_KEY, 
    CLIENT_SECRET, 
    ...options
)

Options

  • name: change endpoint to /auth/tiktok_another, /auth/tiktok_another/callback. default: "tiktok_login"
  • skip_info: skip User Info API call to retrieve info hash. default: false
  • scope: oauth scopes, seperated by comma. default: "user.info.basic"

Usage

Example of request.env["omniauth.auth"] can be found in the specs:

License

The gem is available as open source under the terms of the MIT License.

FAQs

Package last updated on 13 Apr 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc