���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/123vid/vendor/nicklaw5/twitch-api-php/src/Api/ |
<?php namespace TwitchApi\Api; trait Authentication { /** * Get the Twitch OAuth URL * * @param string $state * @param bool $forceVerify * @return string */ public function getAuthenticationUrl($state = null, $forceVerify = false) { return implode('', [ sprintf('%soauth2/authorize', $this->baseUri), '?response_type=code', sprintf('&client_id=%s', $this->getClientId()), sprintf('&redirect_uri=%s', $this->getRedirectUri()), sprintf('&scope=%s', implode('+', $this->getScope())), sprintf('&state=%s', $state), sprintf('&force_verify=%s', $forceVerify ? 'true' : 'false'), ]); } /** * Get a user's access credentials, which includes the access token * * @param string $code * @param string $state * @return array|json */ public function getAccessCredentials($code, $state = null) { return $this->post('oauth2/token', [ 'client_id' => $this->getClientId(), 'client_secret' => $this->getClientSecret(), 'grant_type' => 'authorization_code', 'redirect_uri' => $this->getRedirectUri(), 'code' => $code, 'state' => $state, ]); } }