add default params for requests and accessors for authentification codes

This commit is contained in:
2013-06-13 16:06:28 +02:00
parent 81d3e7e172
commit a92d5a1e1f
6 changed files with 65 additions and 9 deletions
+4 -1
View File
@@ -1,4 +1,5 @@
using System;
using PocketSharp;
namespace PocketSharp.Console
{
@@ -11,7 +12,9 @@ namespace PocketSharp.Console
// this apiKey is just for demonstration purposes
// please create your own application and retrieve it's key. It's a 1-step process ;-)
PocketClient client = new PocketClient();
PocketClient client = new PocketClient("15396-f6f92101d72c8e270a6c9bb3");
client.Test();
System.Console.ReadKey();
}