Skip to content
This repository has been archived by the owner on Apr 23, 2021. It is now read-only.

Latest commit

 

History

History
57 lines (37 loc) · 2.5 KB

MobileAuthorizationApi.md

File metadata and controls

57 lines (37 loc) · 2.5 KB

SquareConnect\MobileAuthorizationApi

All URIs are relative to https://connect.squareup.com

Method HTTP request Description
createMobileAuthorizationCode POST /mobile/authorization-code CreateMobileAuthorizationCode

createMobileAuthorizationCode

\SquareConnect\Model\CreateMobileAuthorizationCodeResponse createMobileAuthorizationCode($body)

CreateMobileAuthorizationCode

Generates code to authorize a mobile application to connect to a Square card reader Authorization codes are one-time-use and expire 60 minutes after being issued. Important: The Authorization header you provide to this endpoint must have the following format: Authorization: Bearer ACCESS_TOKEN Replace ACCESS_TOKEN with a valid production authorization credential.

Example

<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure OAuth2 access token for authorization: oauth2
SquareConnect\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$apiInstance = new SquareConnect\Api\MobileAuthorizationApi();
$body = new \SquareConnect\Model\CreateMobileAuthorizationCodeRequest(); // \SquareConnect\Model\CreateMobileAuthorizationCodeRequest | An object containing the fields to POST for the request.  See the corresponding object definition for field details.

try {
    $result = $apiInstance->createMobileAuthorizationCode($body);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling MobileAuthorizationApi->createMobileAuthorizationCode: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
body \SquareConnect\Model\CreateMobileAuthorizationCodeRequest An object containing the fields to POST for the request. See the corresponding object definition for field details.

Return type

\SquareConnect\Model\CreateMobileAuthorizationCodeResponse

Authorization

oauth2

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]