Giter Site home page Giter Site logo

Comments (3)

jdrescher2006 avatar jdrescher2006 commented on June 16, 2024

I started with converting to urllib.
First step is requesting landing page and get CSFR:

try:
	response = urllib.urlopen(base + '/portal/en_GB/web/guest/home')			
except urllib.error.HTTPError as e:
	print('HTTPError: {}'.format(e.code))
	return 0
except urllib.error.URLError as e:
	print('URLError: {}'.format(e.reason))
	return 0
print('Request OK!')	
csrf = extract_csrf(response.read())
print(csrf)

This works, i get for example: Ua5jtvrj

from python-carnet-client.

jdrescher2006 avatar jdrescher2006 commented on June 16, 2024

Next step is request login page:

data = urllib.urlencode({'headers': AUTHHEADERS})	
data = data.encode('ascii')
response = urllib.urlopen(base + '/portal/web/guest/home/-/csrftokenhandling/get-login-url', data)
print response.read()

Unfortunately this returns a html web page and not a json file as your code does. What could be the problem?

from python-carnet-client.

jdrescher2006 avatar jdrescher2006 commented on June 16, 2024

OK, I got the requests library running on my system. So I will close this.

from python-carnet-client.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.