932
Views
0
Helpful
1
Replies
SDWAN Viptela vManage j_security_check API calling issue
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-10-2022 12:06 AM - edited 10-10-2022 04:29 AM
Hi,
I am getting SSL Connect error while calling POST vManage j_security_check API as per below snapshot.please help me on this how to resolve SSL error.
Labels:
- Labels:
-
Communities of Interest
1 Reply 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-11-2022 07:12 AM
Hello Pawan
You need to turn off ssl verification
I'm not sure how this is done in curl but with python requests library, you add verify=False in your post request.
payload='j_username=****&j_password=******'
headers = {
'Content-Type': 'application/x-www-form-urlencoded',
}
response = requests.post(url=url, headers=headers, data=payload, verify=False)
You need to research how to do this with curl
