You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-37Lines changed: 7 additions & 37 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,62 +26,32 @@ Before you can use this gem, you'll need to configure it with the key and cert,
26
26
27
27
28
28
WealthForge.configure do |config|
29
-
config.wf_crt_file = ENV['WF_CRT_FILE']
30
-
config.wf_key_file = ENV['WF_KEY_FILE']
29
+
config.client_secret = ENV['WF_CLIENT_SECRET']
30
+
config.client_id = ENV['WF_CLIENT_ID']
31
31
config.environment = 'development'
32
32
end
33
33
34
-
or
35
-
36
-
WealthForge.configure do |config|
37
-
config.wf_crt = ENV['WF_CRT']
38
-
config.wf_key = ENV['WF_KEY']
39
-
config.environment = 'development'
40
-
end
41
-
42
-
43
34
44
35
## Usage
45
36
46
-
Please refer to the official WealthForge API [documentation](https://api.wealthforge.com/) for a full list of API calls. Note that this is currently a partial implementation of the most commonly used functionality.
37
+
Please refer to the official WealthForge API [documentation](https://wealthforge.api-docs.io/) for a full list of API calls. Note that this is currently a partial implementation of the most commonly used functionality.
0 commit comments