感谢 Coinbase 的 Robin 支持,我得到了答案。这是一个示例,展示了如何通过 PHP 中的 Coinbase OAUTH2 API 获取一些用户详细信息。
在这个例子中,这些函数被添加到 coinbase-php/lib/Coinbase.php 的 Coinbase 类中:
class Coinbase
{
/*...Existing functions here*/
/*New stuff...*/
public function getUserID()
{
return $this->get("users", array())->users[0]->user->id;
}
public function getUserName()
{
return $this->get("users", array())->users[0]->user->name;
}
public function getUserEmail()
{
return $this->get("users", array())->users[0]->user->email;
}
public function getUserTimeZone()
{
return $this->get("users", array())->users[0]->user->time_zone;
}
public function getUserNativeCurrency()
{
return $this->get("users", array())->users[0]->user->native_currency;
}
笔记