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

oauth-request-client

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

oauth-request-client

371Digital oAuth Request Client

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

371Digital oAuth Request Client

Description

371Digital bünyesinde üretilen ürünlerin, yönetim ve üretim parçalarının Web & Mobil & Desktop servislerinde auth işemleri için kullanılması gereken pakettir.

Methods

login

Kullanıcı giriş işlemi için kullanılır.

const result = await login("test@371digital.com", "123456");
Success Response
{
    "message": String,
    "code": Number,
    "data": {
        "accessToken": "User JWT Token",
        "userId": "User Id"
    }
}

logout

Kullanıcının çıkış işlemi için kullanılır. Request katmanındaki jwt token'ı sıfırlar.

const result = await logout();

verifyToken

Kullanıcının jwt tokenının geçerli olup olmadığını kontrol eder. Eğer kullanıcının jwt token'ı valid ise request katmanına token'i register eder. Bu işlem authentication gereketiren (getUserData gibi) methodların başarı ile çalışabilmesi için zorunludur.

const result = await verifyToken("jwtToken");
Success Response
{
    "message": String,
    "code": Number,
    "data": {
        "userId": "User Id",
    }
}

getUserData

Kullanıcının bilgilerini çekmek için kullanılır.

const result = await getUserData();
Success Response
{
    "message": String,
    "code": Number,
    "data": {
       "mail": "User Mail (test@371digital.com)",
       "fullName": "Test User",
       "id": "User Id"
    }
}

Keywords

FAQs

Package last updated on 30 Dec 2022

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