Exemplo n.º 1
0
 public GimmieWrapper(string key, string secret)
 {
     if(instance == null){
     mKey = key;
     mSecret = secret;
     instance = this;
     }
 }
Exemplo n.º 2
0
 public static void InitGimmie(string key, string secret)
 {
     if(instance==null) instance = new GimmieWrapper(key, secret);
     mOAuthManger = new OAuth.Manager(key, secret,"","");
 }