BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
app.imagivibe.com
/
vendor
/
hubspot
/
api-client
/
lib
/
Utils
📤 Upload
📝 New File
📁 New Folder
Close
Editing: OAuth2.php
<?php namespace HubSpot\Utils; class OAuth2 { public const AUTHORIZE_URL = 'https://app.hubspot.com/oauth/authorize'; /** * Initiate an Integration with OAuth 2.0. * * @param string $clientId the Client ID of your app * @param string $redirectURI The URL that you want the visitor redirected to after granting access to your app. For security reasons, this URL must use https. * @param array $scopesArray a set of scopes that your app will need access to * @param array $optionalScopesArray a set of optional scopes that your app will need access to * * @return string */ public static function getAuthUrl(string $clientId, string $redirectURI, array $scopesArray = [], array $optionalScopesArray = []) { $queryParams = [ 'client_id' => $clientId, 'redirect_uri' => $redirectURI, ]; if (!empty($scopesArray)) { $queryParams['scope'] = implode(' ', $scopesArray); } if (!empty($optionalScopesArray)) { $queryParams['optional_scope'] = implode(' ', $optionalScopesArray); } return static::AUTHORIZE_URL.'?'.http_build_query($queryParams, '', '&', PHP_QUERY_RFC3986); } }
Save
Cancel