-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.cpp
32 lines (21 loc) · 950 Bytes
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#include "kandyAccount.h"
#include "kandyDomain.h"
string apiKey="AAK15fd135fbc9f448889f5dea46fd1687b";
string apiSecretKey="AASed864b1c7a8a42628d03c0c616e4e753";
string domainApiKey = "DAKc8801264d0b54464a71df135ddeaf170";
string domainSecretApiKey = "DASff493e5b119543f2900d7494bb0db5a5";
int main(){
//---------------------------#KandyAccount Test#-------------------------------------
KandyAccount kandyAccount(apiKey,apiSecretKey);
kandyAccount.Connect();
kandyAccount.Disconnect();
//kandyAccount.CreateDomain("efe.com","test domain for my account");
//string list = kandyClient.GetListDomains();
//cout << list;
//---------------------------#KandyDomain Test#----------------------------------------
//KandyDomain kandyDomain("efe.com","test domain");
//kandyDomain.setDomainApi(domainApiKey,domainSecretApiKey);
//kandyDomain.Connect();
//kandyDomain.Disconnect();
return 0;
}