我通过python代码从Postgresql数据库中获取一些字符串,然后尝试通过API将其发送到Facebook。
cur.execute("SELECT text_column FROM table")
.....
print graph.post(path = str(row["FB_acnt_id"])+'/notifications', template = str(row["_text"]), access_token = fb_token_app, href = str(row["_href_text"]))
除了带撇号的文字外,一切正常。 例如: 短语 - 是的 显示为 - It \ 047s
如何解决此问题?
感谢。