-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding support for different URL to use when pulling beta version inf…
…ormation
- Loading branch information
Showing
3 changed files
with
117 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 13 additions & 1 deletion
14
PhraseExpress/LatestVersionFunction/LatestVersionFunction/samplerequests.http
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,19 @@ | ||
# From fiddler trace of app installation | ||
GET https://www.phraseexpress.com/update16.php?license=DEMO&version=16.1.6&hwid=CE6BBECC&hs=43f755f83538369dd7668077bee7448b&langid=09&priority=1 HTTP/1.1 | ||
GET https://www.phraseexpress.com/update16.php?license=DEMO&hs=43f755f83538369dd7668077bee7448b HTTP/1.1 | ||
|
||
### | ||
|
||
# Next major | ||
GET https://www.phraseexpress.com/update17.php?license=DEMO&hs=43f755f83538369dd7668077bee7448b HTTP/1.1 | ||
|
||
### | ||
|
||
# To hit local instance of the Function | ||
GET http://localhost:7071/api/GetLatestVersion HTTP/1.1 | ||
Connection : keep-alive | ||
|
||
### | ||
|
||
# To hit local instance of the Function w/ Beta option | ||
GET http://localhost:7071/api/GetLatestVersion?beta=true HTTP/1.1 | ||
Connection : keep-alive |