This file contains hidden or 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
| <?xml version='1.0' encoding='UTF-8'?> | |
| <eveapi version="2"> | |
| <currentTime>2011-01-22 13:24:07</currentTime> | |
| <result> | |
| <rowset name="notifications" key="notificationID" columns="notificationID"> | |
| <row notificationID="331337318"><![CDATA[applicationText: '' | |
| charID: 334795251 | |
| corpID: 503239300 | |
| ]]></row> | |
| </rowset> |
This file contains hidden or 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
| string cUrl = "https://{CVAccountName}.cloudvox.com/api/v1/applications/{CVAppID}/sms"; | |
| HttpWebRequest webClient = (HttpWebRequest) WebRequest.Create(cUrl); | |
| // *** Send any POST data | |
| string postData = "to={to}&from={CVPhoneNumber}&message={message}"; | |
| webClient.Method="POST"; | |
| byte [] postBuffer = System.Text.Encoding.GetEncoding(1252).GetBytes(postData); | |
| webClient.ContentLength = postBuffer.Length; |
This file contains hidden or 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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <config> | |
| <Api> | |
| <userID>000000</userID> | |
| <apiKey>7E87B3A4DC214E08A35B8722C844AC40CD872423692A4E85982D45F640EC5A3F</apiKey> | |
| <characterID>000000000</characterID> | |
| </Api> | |
| <Scope>corp</Scope> | |
| <Cache> | |
| <backend> |
NewerOlder