python 脚本的 repin 函数将不起作用

repin function of a python script won't work

我是 python 方面的新手,并且还在学习,我正在尝试制作 Github 上的脚本,按照说明在 Pinterest 上完成一些任务,我只对把别人的pin贴到我的板上,我已经试了一个多星期了,没有任何结果,也许有人愿意帮我解决这个问题。 我真的很感激。 Here is the source file link on Github

这是重新固定代码的一部分:

 def repin(pin_id='', board_id='', section_id=None): return pinterest.repin(board_id=board_id,
  pin_id=pin_id, section_id=section_id)

我制作了一个文件,上面有这些:

    import json
    import time
    import os
    from py3pin.Pinterest import Pinterest
    pinterest = Pinterest(email='my acc email',
    password='my acc pass',
    username='my acc username',
    cred_root='cred_root')
    def repin(pin_id='I put other's people pin no Here', board_id='I put one of my board id number 
    Here', section_id=None):
    return pinterest.repin(board_id=board_id, pin_id=pin_id, section_id=section_id)

我没有得到任何结果,也没有收到任何错误。 感谢您的帮助,非常感谢。

尝试:

import json
import time
import os
from py3pin.Pinterest import Pinterest
pinterest = Pinterest(email='my acc email',
password='my acc pass',
username='my acc username',
cred_root='cred_root')
pinterest.login()
def repin(pin_id="403212972893719260",board_id="403213041577459796"):
  pinterest.repin(board_id=board_id,pin_id=pin_id)

repin()

我遇到的唯一错误是登录错误,因为凭据无效。

旁注:ID 是占位符,随机的。