We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 146a1d4 commit bac57ccCopy full SHA for bac57cc
README.md
@@ -12,16 +12,18 @@ git+git://github.com/GearPlug/pipedrive-python
12
from pipedrive.client import Client
13
client = Client()
14
```
15
-- If on the contrary you will use it, send "oauth=True" in the main instance like this:
+- If on the contrary you will use it, send the "client_id", the "client secret" and the paramater "oauth=True" in the main instance like this:
16
17
18
client = Client('CLIENT_ID', 'CLIENT_SECRET', oauth=True)
19
20
+
21
#### Set token
22
And to make requests send the access token
23
24
client.set_token(access_token)
25
26
27
#### Get authorization url
28
29
url = client.get_oauth_uri("REDIRECT_URL", "OPTIONAL - state")
0 commit comments