We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent daad20d commit 4a9c53dCopy full SHA for 4a9c53d
lib/Github/Api/Enterprise/ManagementConsole.php
@@ -54,11 +54,6 @@ public function keys($hash)
54
return $this->get('/setup/api/settings/authorized-keys', $hash);
55
}
56
57
- public function getClient()
58
- {
59
- return $this->client;
60
- }
61
-
62
/**
63
* Sends an authenticated GET request.
64
*
@@ -69,6 +64,6 @@ public function getClient()
69
*/
70
65
protected function get($uri, $hash)
71
66
{
72
- return parent::get($uri, array('auth' => array('license', rawurlencode($hash))));
67
+ return parent::get($uri, array('license_md5' => rawurlencode($hash)));
73
68
74
0 commit comments