File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -97,11 +97,14 @@ php composer.phar install
9797
9898require_once(__DIR__ . '/vendor/autoload.php');
9999
100- //TODO: Get your AppSID and AppKey at https://dashboard.groupdocs.cloud (free registration is required).
101- $configuration = new GroupDocs\Viewer\Configuration();
102- $configuration->setAppSid("XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX");
103- $configuration->setAppKey("XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX");
100+ //Get Client Id and Client Secret from https://dashboard.groupdocs.cloud
101+ $myClientId = "";
102+ $myClientSecret = "";
104103
104+ // Create instance of the API
105+ $configuration = new GroupDocs\Viewer\Configuration();
106+ $configuration->setAppSid($myClientId);
107+ $configuration->setAppKey($myClientSecret);
105108$infoApi = new GroupDocs\Viewer\InfoApi($configuration);
106109
107110try {
You can’t perform that action at this time.
0 commit comments