@BlackJack
Can you help me fix my code?. Tks a lot
Die Suche ergab 4 Treffer
- Sonntag 21. Dezember 2014, 04:50
- Forum: Allgemeine Fragen
- Thema: Create New Comment In Xenforo
- Antworten: 6
- Zugriffe: 2170
- Samstag 20. Dezember 2014, 02:35
- Forum: Allgemeine Fragen
- Thema: Create New Comment In Xenforo
- Antworten: 6
- Zugriffe: 2170
Re: Create New Comment In Xenforo
@sirius3
import requests
with requests.session() as c:
url='https://xenforo.com/community/login/login'
USERNAME='minneconsin@gmail.com'
PASSWORD='Demo12345'
c.get(url)
login_data=dict(login=USERNAME,password=PASSWORD,next="/")
c.post(url,data=login_data,headers={"Referer":"https://xenforo ...
import requests
with requests.session() as c:
url='https://xenforo.com/community/login/login'
USERNAME='minneconsin@gmail.com'
PASSWORD='Demo12345'
c.get(url)
login_data=dict(login=USERNAME,password=PASSWORD,next="/")
c.post(url,data=login_data,headers={"Referer":"https://xenforo ...
- Freitag 19. Dezember 2014, 14:59
- Forum: Allgemeine Fragen
- Thema: Create New Comment In Xenforo
- Antworten: 6
- Zugriffe: 2170
Re: Create New Comment In Xenforo
@sirius3
Thanks for your advices. How to fix my code? help me pls
Thanks for your advices. How to fix my code? help me pls
- Freitag 19. Dezember 2014, 14:32
- Forum: Allgemeine Fragen
- Thema: Create New Comment In Xenforo
- Antworten: 6
- Zugriffe: 2170
Create New Comment In Xenforo
Hi,
https://xenforo.com/community/threads/nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp.3864/
i want to add new comment "thanks" to above topic
It can login but can not reply topic.
Here my code, please help me fix. Thanks a lot
import requests
with requests.session ...
https://xenforo.com/community/threads/nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp-nbsp.3864/
i want to add new comment "thanks" to above topic
It can login but can not reply topic.
Here my code, please help me fix. Thanks a lot
import requests
with requests.session ...
