Python Forum
Powershell Session translation to Python; Session code seems to not work
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Powershell Session translation to Python; Session code seems to not work
#1
The following are what I have in powershell

# Get a SIM Session Cookie
Invoke-WebRequest -UseDefaultCredentials -UseBasicParsing -Uri https://maxis-service.domain.com/users/whoami -SessionVariable sim

#Send Post to Create Job
$response = Invoke-RestMethod -UseDefaultCredentials -UseBasicParsing -WebSession $sim -Uri https://maxis-service.domain.com/jobs -Method Post -Body $json -ContentType "application/json"

I believe this should translate to a session with requests, but if I am wrong please let me know.

I tried using the following in Python after a lot of google, but it doesn't seem to work like I thought it did (similar to what powershell is doing):

    sessionURL = 'https://maxis-service.domain.com/users/whoami'
    simURL = 'https://maxis-service.domain.com/jobs'    
    s = requests.Session()
    sr = s.get(sessionURL,verify=False)
    cookie = s.cookies
    print(cookie)
    dr = s.post(simURL,data=rawJson,verify=False)
cookie prints the expected cookie, but then the post request gives a 401; is there a reason that python gets a 401? am I not using the session correctly?
Reply
#2
I should probably have expanded here is the output when I print dr as well:

<RequestsCookieJar[<Cookie cookie_cookie=1b41fd0a9722b852 for maxis-service.domain.com/>]>
<Response [401]>

So I can't understand why the post call using the session is giving a 401
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Updating column name with translation bobbydave 0 1,027 Sep-17-2024, 03:40 PM
Last Post: bobbydave
  Can't get graph code to work properly. KDDDC2DS 1 608 Sep-16-2024, 09:17 PM
Last Post: deanhystad
  Show powershell errors in flask-wtf web form robertkwild 14 2,450 Jun-30-2024, 03:15 PM
Last Post: robertkwild
  Cant get powershell script to run with subprocess robertkwild 2 1,305 Jun-27-2024, 01:23 PM
Last Post: robertkwild
  Running powershell command in flask wtf form robertkwild 10 2,197 Jun-27-2024, 09:49 AM
Last Post: robertkwild
  Passing web form to powershell robertkwild 1 918 Jun-14-2024, 10:16 AM
Last Post: Akshiya
  I can't for the life of me get this basic If statement code to work CandleType1a 8 2,090 May-21-2024, 03:58 PM
Last Post: CandleType1a
  using PowerShell from Python script for mounting shares tester_V 8 2,236 Mar-12-2024, 06:26 PM
Last Post: tester_V
  hi need help to make this code work correctly atulkul1985 5 1,849 Nov-20-2023, 04:38 PM
Last Post: deanhystad
  save a session in idle akbarza 5 1,998 Nov-06-2023, 08:36 AM
Last Post: snippsat

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020