Advertisement
kopyl

/salesApiConnection?action=connectV2

Aug 3rd, 2023
1,134
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.33 KB | None | 0 0
  1. params = {
  2.     'action': 'connectV2',
  3. }
  4.  
  5. data = {"member": "ACwAADZP0XgBQ05NSUoLL0BqgKh1Wcyk5LWxzCE", "message": "Hey :)"}
  6.  
  7. response = requests.post(
  8.     'https://www.linkedin.com/sales-api/salesApiConnection',
  9.     params=params,
  10.     cookies=cookies,
  11.     headers=headers,
  12.     data=json.dumps(data)
  13. )
  14. print(response.json())
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement