Skip to content

Latest commit

 

History

History
64 lines (44 loc) · 1.93 KB

File metadata and controls

64 lines (44 loc) · 1.93 KB

Flipdish\Client\LookerSingleSignOnApi

All URIs are relative to https://api.flipdish.co

Method HTTP request Description
getSSOEndpoint GET /api/v1.0/{appId}/looker/sso

getSSOEndpoint

\Flipdish\Client\Models\DashboardEmbed getSSOEndpoint($app_id, $embed_path, $filters)

Example

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

// Configure OAuth2 access token for authorization: oauth2
$config = Flipdish\\Client\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');

$apiInstance = new Flipdish\\Client\Api\LookerSingleSignOnApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);
$app_id = "app_id_example"; // string | 
$embed_path = "embed_path_example"; // string | 
$filters = "filters_example"; // string | 

try {
    $result = $apiInstance->getSSOEndpoint($app_id, $embed_path, $filters);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling LookerSingleSignOnApi->getSSOEndpoint: ', $e->getMessage(), PHP_EOL;
}
?>

Parameters

Name Type Description Notes
app_id string
embed_path string
filters string [optional]

Return type

\Flipdish\Client\Models\DashboardEmbed

Authorization

oauth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json, text/json, application/xml, text/xml

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