rzilvinas/laravel-disqus-sso 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

rzilvinas/laravel-disqus-sso

Composer 安装命令:

composer require rzilvinas/laravel-disqus-sso

包简介

Generates payload to use with Disqus SSO

README 文档

README

Build Status

Laravel Disqus SSO

A simple Laravel packages used to generate payload for the Disqus SSO feature.

Installation

  • Install the package via composer:

composer require igonics/laravel-disqus-sso

  • Add the service provider to app/config/app.php:

'IGonics\Disqus\DisqusServiceProvider',

  • Add the alias to app/config/app.php:

'DisqusSSO' => 'IGonics\Disqus\Facades\DisqusSSO',

  • Publish the configuration file:

php artisan vendor:publish --provider="IGonics\Disqus\DisqusServiceProvider" --tag="config"

Configuration

Open config/disqus-sso.php and fill in your Disqus secret and public API keys. You can find those at your Disqus applications page.

Usage

Using this package is very easy. Add the following JavaScript code before the Disqus initialisation:

JavaScript using Blade Syntax

var disqus_config = function () {
    // The generated payload which authenticates users with Disqus
    this.page.remote_auth_s3 = '{{ DisqusSSO::payload(Auth::user()) }}';
    this.page.api_key = '{{ DisqusSSO::publicKey() }}';
}

JavaScript using vanilla PHP

var disqus_config = function () {
    // The generated payload which authenticates users with Disqus
    this.page.remote_auth_s3 = '<?php echo DisqusSSO::payload(Auth::user()) ?>';
    this.page.api_key = '<?php echo DisqusSSO::publicKey() ?>';
}

The payload function accepts two different types of input:
a) An array with the id, username, email, avatar and url of the user you're trying to authenticate. See the Disqus help for more information about these.
b) A laravel Model instance, for example Auth::user() as shown in the example.

Maintained By

IGonics

统计信息

  • 总下载量: 11
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 1
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 0
  • Forks: 4
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2022-04-22

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固