0

我刚刚使用 facebook graph API 构建了一个应用程序,它运行到现在一直很顺利。

每当我访问我的网站时,我都会收到错误消息

Uncaught FacebookApiException: Unsupported operation thrown on line 1254

这是第 1254 行

$e = new FacebookApiException($result);

当我运行调试时,这就是我得到的

Open Graph Warnings That Should Be Fixed

Inferred Property:
The 'og:url' property should be explicitly provided, even if a value can be inferred from other tags.

Inferred Property:  
The 'og:title' property should be explicitly provided, even if a value can be inferred from other tags.

Inferred Property:  
The 'og:description' property should be explicitly provided, even if a value can be inferred from other tags.

有谁知道这是什么原因造成的?

4

1 回答 1

0

您必须先登录 facebook 应用程序,然后才能调用图形 API。我在外部进行了 API 调用

if ($user_is_logged_in) 
    do this

应该知道,但这是一个诚实的错误!

于 2013-03-15T08:57:02.547 回答