3

我在使用Facebook Workplace的帐户管理 API时遇到问题。我所要做的就是建立一个快速简单的员工目录,它可以抓取我们所有的活跃用户并吐出他们的姓名、职务、部门和照片。问题是,返回的数据似乎与上面链接中看到的 Facebook 核心模式不匹配。一些模式数据回来了,但从来没有照片,不管我怎么尝试。

private function getEmployees()
{
    $done = false;
    $current_index = 1;
    $current_page = 1;
    $results = [];

    while(!$done) {

        $res = $this->client->request(
            'GET',
            'https://www.facebook.com/company/XXXXXXXXX/scim/Users?count=100&startIndex=' . $current_index,
            [
                'headers' => ['Accept' => 'application/json',
                    'Content-Type' => 'application/json',
                    'Authorization' => 'Bearer ' . $this->token
                ]
            ]
        );

        $decoded = json_decode($res->getBody());
        $total = $decoded->totalResults;
        $perPage = $decoded->itemsPerPage;

        if (isset($decoded->Resources)) {
            $results = array_merge($results, $decoded->Resources);

            if (($current_page * $perPage) >= $total) {
                $done = true;
            } else {
                $current_page++;
                $current_index += $perPage;
            }
        } else {
            $done = true;
        }

    }

    return $results;
}

这回馈:

object(stdClass)[392]
public 'schemas' => 
array (size=3)
  0 => string 'urn:scim:schemas:core:1.0' (length=25)
  1 => string 'urn:scim:schemas:extension:enterprise:1.0' (length=41)
  2 => string 'urn:scim:schemas:extension:facebook:starttermdates:1.0' (length=54)
public 'id' => int 10001156699923
public 'userName' => string 'np@lt.com' (length=21)
public 'name' => 
object(stdClass)[393]
  public 'formatted' => string 'Nick P' (length=11)
public 'title' => string 'Lead PHP Engineer' (length=17)
public 'active' => boolean true
public 'phoneNumbers' => 
array (size=1)
  0 => 
    object(stdClass)[394]
      public 'primary' => boolean true
      public 'type' => string 'work' (length=4)
      public 'value' => string '+1631123456' (length=12)
public 'addresses' => 
array (size=1)
  0 => 
    object(stdClass)[395]
      public 'type' => string 'attributes' (length=10)
      public 'formatted' => string 'Manhattan' (length=9)
      public 'primary' => boolean true
public 'urn:scim:schemas:extension:enterprise:1.0' => 
object(stdClass)[396]
  public 'department' => string 'IT' (length=2)
  public 'manager' => 
    object(stdClass)[397]
      public 'managerId' => int 100011017901494
public 'urn:scim:schemas:extension:facebook:starttermdates:1.0' => 
object(stdClass)[398]
  public 'startDate' => int 0
  public 'termDate' => int 0

如您所见,它返回属于“核心”模式的其他字段,但缺少“照片”数组和其他字段。我认为这可能是因为用户没有任何照片,但几乎所有人都有个人资料照片,而且许多人还有更多。我尝试专门获取他们的用户信息,但遇到相同的结果,没有照片。

有人尝试过类似的东西吗?非常感谢任何帮助,这对我们来说有点障碍。

谢谢

4

1 回答 1

3

要获取个人资料信息,请不要使用 SCIM,但图形 API https://graph.facebook.com/community/members将列出所有成员

您的一位成员的 https://graph.facebook.com/[email] 将获得所有信息

之后,您必须使用字段参数设置要获取的参数。

在我们的实现中,我们从这个请求中获取全部数据

https://graph.facebook.com/XXXX/members?fields=email,picture.type(large),link,title,first_name,last_name,department,updated_time,managers {email}&limit=500

于 2017-06-06T21:28:33.123 回答