t1mmen / opauth-slack
Basecamp strategy for Slack
Installs: 116
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/t1mmen/opauth-slack
Requires
- php: >=5.2.0
- opauth/opauth: >=0.4.0
This package is not auto-updated.
Last update: 2025-09-27 21:21:00 UTC
README
Opauth strategy for Slack authentication.
Implemented based on https://api.slack.com/docs/oauth
Getting started
-
Install Opauth-Slack:
Using git:
cd path_to_opauth/Strategy git clone https://github.com/t1mmen/opauth-slack.git slack
Or, using Composer, just add this to your composer.json
:
{ "require": { "t1mmen/opauth-slack": "*" } }
Then run composer install
.
-
Create Slack application at https://api.slack.com/applications
-
Configure Opauth-Slack strategy with at least
Client ID
andClient Secret
. -
Direct user to
http://path_to_opauth/slack
to authenticate
Strategy configuration
Required parameters:
<?php 'Slack' => array( 'client_id' => 'YOUR CLIENT ID', 'client_secret' => 'YOUR CLIENT SECRET' )
License
Opauth-Slack is MIT Licensed Copyright © 2015 Timm Stokke (http://timm.stokke.me)