0

我正在使用 2.4 .. 有兴趣看看

1) 向 FB 服务器调用什么 HTTP URL/参数 2) 从 FB 服务器返回什么响应

有没有办法做到这一点?

4

1 回答 1

0

好的,我找到了自己的答案。

在 FacebookAds/Logger/NullLogger.php 中,更改这两个函数:

公共函数 logRequest($level, RequestInterface $request, array $context = array()) {

echo "[REQUEST]<BR /><pre>".print_r($request->getUrl(), true)."</pre><br /><pre>".print_r($request->getBodyParams(), true)."</pre><br />[/REQUEST]<br /><br />";

}

公共函数 logResponse($level, ResponseInterface $response, array $context = array()) {

echo "[RESPONSE]<br /><pre>".print_r($response->getContent(), true)."</pre><br /><pre>[/RESPONSE]</pre><br /><br />";

}

于 2015-09-12T18:30:16.020 回答