我可以将页面管理员发布到页面墙。但我需要作为关注者(页面粉丝/用户)发布到页面。我正在使用RestFB api。
我正在使用Facebook RestFB。我有一个facebook页面。以下代码将消息发布为页面。
class fruit():
def __init__(self, color, weight):
self.color = color
self.weight = weight
def scale(self):
print(f"{self.weight} kg")
# i can do
strawberry = fruit("red", 10)
strawberry.scale()
# output "10 kg"
# but i cant do
fruitlist = [
["cherry", "red", 5],
["banana", "yellow", 10],
["blueberry", "blue", 15],
]
for i in range(len(fruitlist)):
fruitname = fruitlist[i][0]
fruitname = fruit(fruitlist[i][1], fruitlist[i][2])
cherry.scale()
# output "undefined name cherry"
但我希望以关注该页面的用户身份发布到该页面。有可能吗?如果是这样,我该怎么办?
有人可以帮忙吗? 提前谢谢。