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
+6-2Lines changed: 6 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,8 +40,12 @@ func main() {
40
40
// Configure the Global SDK
41
41
speakeasy.Configure(speakeasy.Config {
42
42
APIKey: "YOUR API KEY HERE", // retrieve from Speakeasy API dashboard.
43
-
ApiID: "YOUR API ID HERE", // enter a name that you'd like to associate captured requests with. This name will show up in the Speakeasy dashboard. e.g. "PetStore" might be a good ApiID for a Pet Store's API. No spaces allowed.
44
-
VersionID: "YOUR VERSION ID HERE", // enter a version that you would like to associate captured requests with. The combination of ApiID (name) and VersionID will uniquely identify your requests in the Speakeasy Dashboard. e.g. "v1.0.0". You can have multiple versions for the same ApiID (if running multiple versions of your API)
43
+
ApiID: "YOUR API ID HERE", // enter a name that you'd like to associate captured requests with.
44
+
// This name will show up in the Speakeasy dashboard. e.g. "PetStore" might be a good ApiID for a Pet Store's API.
45
+
// No spaces allowed.
46
+
VersionID: "YOUR VERSION ID HERE", // enter a version that you would like to associate captured requests with.
47
+
// The combination of ApiID (name) and VersionID will uniquely identify your requests in the Speakeasy Dashboard.
48
+
// e.g. "v1.0.0". You can have multiple versions for the same ApiID (if running multiple versions of your API)
45
49
})
46
50
47
51
// Associate the SDK's middleware with your router
0 commit comments