Skip to content

Commit

Permalink
Route Voice traffic via AKAMAI (#128)
Browse files Browse the repository at this point in the history
* Route Voice traffic via AKAMAI

* SDK version bump up

* updated changelog

Co-authored-by: huzaif-plivo <[email protected]>
  • Loading branch information
Koushik-Ayila and huzaif-plivo authored Dec 14, 2021
1 parent 9555834 commit 990ac6c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [7.5.0](https://github.com/plivo/plivo-go/tree/v7.5.0) (2021-12-14)
**Features - Voice**
- Routing SDK traffic through Akamai endpoints for all the [Voice APIs](https://www.plivo.com/docs/voice/api/overview/)

## [7.4.0](https://github.com/plivo/plivo-go/tree/v7.4.0) (2021-12-02)
**Features - Messaging: 10 DLC**
- 10DLC API's for brand and campaign support.
Expand Down
2 changes: 1 addition & 1 deletion baseclient.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"github.com/google/go-querystring/query"
)

const sdkVersion = "7.4.0"
const sdkVersion = "7.5.0"

const lookupBaseUrl = "lookup.plivo.com"

Expand Down
6 changes: 3 additions & 3 deletions plivoclient.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ import (
const baseUrlString = "https://api.plivo.com/"

var HttpsScheme = "https"
var voiceBaseUrlString = "voice.plivo.com"
var voiceBaseUrlStringFallback1 = "voice-usw1.plivo.com"
var voiceBaseUrlStringFallback2 = "voice-use1.plivo.com"
var voiceBaseUrlString = "api.plivo.com"
var voiceBaseUrlStringFallback1 = "api.plivo.com"
var voiceBaseUrlStringFallback2 = "api.plivo.com"

const baseRequestString = "/v1/Account/%s/"

Expand Down

0 comments on commit 990ac6c

Please sign in to comment.