我正在为App.net创建一个iOS客户端,我正在尝试设置推送通知服务器.目前,我的应用程序可以将用户的App.net帐户ID(一串数字)和一个APNS设备令牌添加到我服务器上的MySQL数据库中.它还可以删除此数据.我已经修改了这两个教程的代码:
> How To Write A Simple PHP/MySQL Web Service for an iOS App – raywenderlich.com
> Apple Push Notification Services in iOS 6 Tutorial: Part 1/2 – raywenderlich.com
另外,我已经调整了this awesome python script来收听App.net的App Stream API.
我的python是可怕的,我的MySQL知识也是如此.我要做的是访问我需要通知的帐户的APNS设备令牌.我的数据库表每个条目有两个字段/列,一个用于user_id,另一个用于device_token.我不确定术语,如果我能澄清一下,请告诉我.
我一直在尝试使用peewee从数据库中读取,但我已经超越了我的头脑.这是一个带占位符user_id的测试脚本:
import logging
from pprint import pprint
import peewee
from peewee import *
db = peewee.MySQLDatabase("...", host="localhost", user="...", passwd="...")
class MySQLModel(peewee.Model):
class Meta:
database = db
class Active_Users(MySQLModel):
user_id = peewee.CharField(primary_key=True)
device_token = peewee.CharField()
db.connect()
# This is the placeholder user_id
userID = '1234'
token = Active_Users.select().where(Active_Users.user_id == userID)
pprint(token)
然后打印出来:
<class '__main__.User'> SELECT t1.`id`, t1.`user_id`, t1.`device_token` FROM `user` AS t1 WHERE (t1.`user_id` = %s) [u'1234']
如果代码没有说清楚,我试图在数据库中查询user_id为’1234’的行,并且我想将同一行的device_token(再次,可能是错误的术语)存储到变量中当我稍后在脚本中发送推送通知时,我可以使用它.
如何正确返回device_token?此外,放弃peewee并使用python-mysqldb查询数据库会更容易吗?如果是这样的话,我该怎么做呢?
解决方法:
调用User.select().其中(User.user_id == userID)返回一个User对象,但是您将它分配给一个名为token的变量,因为您只需要device_token.
你的任务应该是:
matching_users = Active_Users.select().where(Active_Users.user_id == userID) # returns an array of matching users even if there's just one
if matching_users is not None:
token = matching_users[0].device_token