0

在 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")

发生的情况是,当我运行此脚本时,它会打印“用键创建 pb 对象:”,然后它似乎挂起。30 分钟(左右)后,通知出现在我的手机上,我看到接下来的两个打印行已经出现并且脚本已经完成。

我急于开始使用 Pushbullet 从我的 PI-GPIO 家庭警报器中推送警报通知。它似乎有效,但为什么会有很大的滞后?

4

1 回答 1

0

此问题与我的路由器中不正确的 ipV6 设置有关(例如,由于某种原因启用了它)。这给了我一堆网关和 DNS 地址,这些地址在我发出请求之前必须超时。所以 - 这个问题与 pushbullet 无关。

很抱歉这个误报。

于 2019-10-07T20:36:22.127 回答