是否可以使用PHP调用rest API,在GAE中将数据放入拉队列?

时间:2016-01-21 11:05:45

标签: php google-app-engine task-queue

是否可以使用PHP调用rest API,在GAE中将数据放入拉队列? 我试图调用rest api将数据放入拉队列,但是我收到错误

Array
(
    [error] => Array
        (
            [errors] => Array
                (
                    [0] => Array
                        (
                            [domain] => global
                            [reason] => forbidden
                            [message] => you are not allowed to make this api call
                        )

                )

            [code] => 403
            [message] => you are not allowed to make this api call
        )

)

1 个答案:

答案 0 :(得分:1)

您可能想要为App Engine试用我的PHP Pull Queue库。 https://github.com/tomwalder/php-appengine-pull-queue

这是在很早的ALPHA,但可能适合你。

完全不需要REST API。使用本机Google协议缓冲区(与Python / Java /等运行时相同)

汤姆