Exemplo n.º 1
0
 public static void Main(string[] args)
 {
     ShiftboardClient client = new ShiftboardClient ("YOUR API KEY", "YOUR API SECRET");
     string method = "system.echo";
     string parameter = "{ \"dinner\": \"nachos\" }";
     Console.WriteLine( client.call (method, parameter));
 }
Exemplo n.º 2
0
        public static void Main(string[] args)
        {
            ShiftboardClient client    = new ShiftboardClient("YOUR API KEY", "YOUR API SECRET");
            string           method    = "system.echo";
            string           parameter = "{ \"dinner\": \"nachos\" }";

            Console.WriteLine(client.call(method, parameter));
        }