Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Письменов Дмитрий Иванович / yourroomads

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • yourroomads
  • app
  • Service
  • ApiCommon.php
  • Евгений's avatar
    Улучшение #19447 · 2aa7c79c
    Добавление токенов
    Евгений committed Apr 29, 2021
    2aa7c79c
ApiCommon.php 301 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<?php
namespace App\Service;

class ApiCommon implements API {

    function getAuthLink()
    {
        return 'https://oauth.yandex.ru/authorize?response_type=code&client_id=' . config('api.yandex.id');
    }

    function getToken($code)
    {
        // TODO: Implement getToken() method.
    }
}