Socket
Socket
Sign inDemoInstall

authservice

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

authservice

With this SDK, Python developers can easily interact with the Auth API, enabling hassle-free implementation of user registration, login, and client credential management features within their applications.


Maintainers
1

authservice

This API provides token-based authentication for user registration, login, and client credential management. It ensures secure communication by utilizing tokens for authentication. Users can register with unique usernames and passwords, authenticate using client credentials, retrieve client IDs and secrets, and regenerate client credentials as needed. The API supports various user roles, including 'user', 'admin', 'moderator', 'guest', and 'superadmin'.

This package is published in PyPI:

https://pypi.org/project/authservice/

Requirements.

Python 3.7+

Installation & Usage

pip install

If your package is hosted in PyPI:

pip install authservice

If the python package is hosted on a repository, you can install directly using:

pip install git+https://github.com/CodeCrew24/authservice_python

(you may need to run pip with root permission: sudo pip install git+https://github.com/CodeCrew24/authservice_python)

Then import the package:

import authservice

Setuptools

Install via Setuptools.

python setup.py install --user

(or sudo python setup.py install to install the package for all users)

Then import the package:

import authservice

Tests

Execute pytest to run the tests.

Getting Started

Please follow the installation procedure and then run the following:


import authservice
from authservice.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://auth-service-latest.onrender.com/auth
# See configuration.py for a list of all supported configuration parameters.
configuration = authservice.Configuration(
    host = "https://auth-service-latest.onrender.com/auth"
)



# Enter a context with an instance of the API client
with authservice.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = authservice.DefaultApi(api_client)
    username = 'johndoe' # str | User's username
    password = 'password123' # str | User's password

    try:
        # Get client ID and secret
        api_response = api_instance.client_get(username, password)
        print("The response of DefaultApi->client_get:\n")
        pprint(api_response)
    except ApiException as e:
        print("Exception when calling DefaultApi->client_get: %s\n" % e)

Documentation for API Endpoints

All URIs are relative to https://auth-service-latest.onrender.com/auth

ClassMethodHTTP requestDescription
DefaultApiclient_getGET /clientGet client ID and secret
DefaultApilogin_client_postPOST /login/clientLogs in a user using client ID and secret
DefaultApiregenerate_client_credentials_postPOST /regenerate-client-credentialsRegenerate client credentials
DefaultApiregister_postPOST /registerRegisters a new user

Documentation For Models

Documentation For Authorization

Endpoints do not require authorization.

Author

Keywords

FAQs


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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc