Asp.net Facebook webhook更新

时间:2016-09-30 16:30:48

标签: facebook asp.net-web-api webhooks

我创建了一个测试广告主管,我正在尝试创建webhook以消耗实时更新。我能够成功创建一个webhook,但是当我尝试创建一个测试线程时,我的webhook没有触发,我得到错误代码为301

以下是我的代码:

template <uint64_t V>
constexpr uint64_t make_binary() {
    return V;
}

template <uint64_t V, char C, char... Cs>
constexpr uint64_t make_binary() {
    static_assert(C == '0' || C == '1', "invalid binary");

    return make_binary<2*V + C - '0', Cs...>();
}

template <char... Cs> 
uint64_t operator "" _b()
{
    static_assert(sizeof...(Cs) <= 64, "overflow");

    return make_binary<0, Cs...>();
}

uint64_t a = 101_b; // OK: a == 5
uint64_t b = 102_b; // error: invalid
uint64_t c = 11111111110000000000111111111100000000001111111111000000000011111111110000000000_b; // error: overflow

我甚至没有看到Facebook发送的任何帖子请求。 提前谢谢。

1 个答案:

答案 0 :(得分:0)

问题是我的网址不安全。已安装的证书,现在我可以收到更新