Download the PHP package studiokaa/amoclient without Composer

On this page you can find all versions of the php package studiokaa/amoclient. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package amoclient

Amoclient

A Laravel 5 (and up) package for use with the amologin OpenID connect server. Now using curio.codes!

Installation

!! Please make sure your app is using https, to prevent unwanted exposure of token, secrets, etc.

To use amoclient in your project:

  1. In your laravel project run: composer require studiokaa/amoclient

  2. Set these keys in your .env file:

    • AMO_CLIENT_ID
    • AMO_CLIENT_SECRET
    • AMO_API_LOG (optional)
      • Default: no
      • Set to yes to make Amoclient log all usage of access_tokens and refresh_tokens to the default log-channel.
    • AMO_APP_FOR (optional)
      • Default: teachers
      • This key determines if students can login to your application.
      • May be one of:
        • all: everyone can login, you may restrict access using guards or middleware.
        • teachers: a student will be completely blocked and no user will be created when they try to login.
    • AMO_USE_MIGRATION (optional)
      • Default: yes
      • Set to no if you want to use your own migration instead of the users migration this package provides
    • AMO_SSL_VERIFYPEER (optional)
      • Default: yes
      • Set to no if you want to disable SSL verification. This is only recommended for during development and only on trusted networks.
  3. Alter your User model and add the line: public $incrementing = false;

  4. (Recommended) Remove any default users-migration from your app, because Amoclient will conflict with it. Do not remove the user-model. If you want to keep using your own migration, in your .env file set: AMO_USE_MIGRATION=no

  5. Lastly, run php artisan migrate.

Usage

Logging in

Redirect your users to http://yoursite/amoclient/redirect, this will send your user to amologin for authentication.

You should have a named route that will serve your users with a button or direct redirect to /amoclient/redirect.

Example;

Catch the after-login redirect

After a succesfull login, Amoclient will redirect you to /amoclient/ready. You may define a route in your applications routes/web.php file to handle this.

Example;

Logging out

Send your user to /amoclient/logout. Please note: a real logout cannot be accomplished at this time. If you log-out of your app, but are still logged-in to the amologin-server, this will have no effect.

Laravel's make:auth

Don't use this in combination with Amoclient.

AmoAPI

Apart from being the central login-server, login.amo.rocks also exposes an api. Please note this api is currently undocumented, although there are options to explore the api:

Amoclient API Interface

An example of calling the api through Amoclient;

Known 'bug': Currently the AmoAPI class doesn't check if the token expired but just refreshes it anytime you use it.

AmoAPI::get($endpoint)

Contributing

  1. Clone this repository to your device
  2. Inside the root of this repository run composer install
  3. Create a test project in which you will use this package (Follow Usage instructions above)
  4. Add the package locally using the following additions to your composer.json:

    • Note: ../amoclient should point to where you cloned this package
  5. Run composer require "studiokaa/amoclient @dev" inside the test project

You can now test and modify this package. Changes will immediately be reflected in the test project.


All versions of amoclient with dependencies

PHP Build Version
Package Version
Requires lcobucci/jwt Version 4.0.4
guzzlehttp/guzzle Version ^7.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package studiokaa/amoclient contains the following files

Loading the files please wait ....