pushbullet API 发送笔记需要 30 分钟
pushbullet API takes 30 minutes to deliver note
在 Raspberry pi 上使用 Python 2.7,我创建了一个 Pushbullet 帐户并将其安装在我的 iPhone 7 (iOS 12.4) 上。在这种情况下,我使用的是 https://github.com/rbrcsk/pushbullet.py 中的 github 库,但我也注意到使用其他方法时存在这种滞后。
代码如下:
#!/usr/bin/env python
from pushbullet import Pushbullet
PB_API_KEY = 'o.00000000000000000000000000000000'
print("creating pb object with key:")
try:
pb = Pushbullet(PB_API_KEY)
except Exception as e:
print (str(e))
exit()
print("pushing note:")
try:
push = pb.push_note('important subject','this is a test')
except Exception as e:
print (str(e))
exit()
print ("done")
发生的事情是,当我 运行 这个脚本时,它打印 "creating pb object with key:" 然后它似乎挂起。 30 分钟(左右)后,通知出现在我的 phone 上,我看到接下来的两行打印已经出现,脚本已经完成。
我很想开始使用 Pushbullet 从我的 PI-GPIO 家庭警报中推送警报通知。它似乎有效,但为什么会有很大的滞后?
此问题与我的路由器中不正确的 ipV6 设置有关(例如,出于某种原因启用了它)。这给了我一堆网关和 DNS 地址,在我发出请求之前必须超时。所以 - 这个问题与 pushbullet 无关。
对于这个误报,我们深表歉意。
在 Raspberry pi 上使用 Python 2.7,我创建了一个 Pushbullet 帐户并将其安装在我的 iPhone 7 (iOS 12.4) 上。在这种情况下,我使用的是 https://github.com/rbrcsk/pushbullet.py 中的 github 库,但我也注意到使用其他方法时存在这种滞后。
代码如下:
#!/usr/bin/env python
from pushbullet import Pushbullet
PB_API_KEY = 'o.00000000000000000000000000000000'
print("creating pb object with key:")
try:
pb = Pushbullet(PB_API_KEY)
except Exception as e:
print (str(e))
exit()
print("pushing note:")
try:
push = pb.push_note('important subject','this is a test')
except Exception as e:
print (str(e))
exit()
print ("done")
发生的事情是,当我 运行 这个脚本时,它打印 "creating pb object with key:" 然后它似乎挂起。 30 分钟(左右)后,通知出现在我的 phone 上,我看到接下来的两行打印已经出现,脚本已经完成。
我很想开始使用 Pushbullet 从我的 PI-GPIO 家庭警报中推送警报通知。它似乎有效,但为什么会有很大的滞后?
此问题与我的路由器中不正确的 ipV6 设置有关(例如,出于某种原因启用了它)。这给了我一堆网关和 DNS 地址,在我发出请求之前必须超时。所以 - 这个问题与 pushbullet 无关。
对于这个误报,我们深表歉意。