-1

How we can integrate GitHub with "web2py" project.I want to connect may application to github.

  • You need to be more specific, what kind of integration you need? – Cesar Sep 29 '16 at 09:49
  • I just want when i "commit" or "push" on github webhook send json regarding commit message etc on given url i.e. http://abc:8000/controller/function. I have successfully hit the controller but json not recieve – Jawad Faisal Oct 05 '16 at 14:53
  • There are some instructions on this question: http://stackoverflow.com/questions/22330784/web2py-git-integration-localhost-pythonanywhere – RedBeard Oct 07 '16 at 13:25

1 Answers1

0

You should get the json request as a Storage object using:

request.post_vars
Cesar
  • 707
  • 3
  • 13