У меня есть этот элемент ввода в index.php
<input type="submit" name="OUs" value="Get all OU's">
Здесь я запускаю функцию в PHP кодовом блоке в index.php
:
require_once('./OU.php');
$ou = new \Google\OU\OU();
if(isset($_POST['OUs'])) {
echo $ou->getOUs($response['access_token']);
}
Я пытаюсь запустить функцию в ou.php
namespace Google\OU;
define("APIURL_DIRECTORY","https://www.googleapis.com/admin/directory/v1/customer/"); // For Google
Directory actions
class OU
{
// Get OU's
function getOUs($token){
$url = "https://www.googleapis.com/admin/directory/v1/customer/my_customer/orgunits?orgUnitPath=/&type=all";
$method = "GET";
echo exeCurl($url,$method);
}
По какой причине ничего не происходит, когда я нажимаю на эту кнопку отправки? Он должен выполнить Curl Call, не так ли? Я не могу понять это. Заранее спасибо.