Ejemplo n.º 1
0
        public Form1()
        {
            InitializeComponent();

            _api = new TwitterAPI();

            _api.ConsumerKey    = "W69N3tZbbwBbMuB6F6Zg";
            _api.ConsumerSecret = "CzGOVEkQdMjEYDmw6GI4k7H7LBFxtiIewakIr1X8o8";
        }
Ejemplo n.º 2
0
 void Awake()
 {
     if (instance == null)
     {
         instance = this;
     }
     else
     {
         Debug.LogError("More then one instance of TwitterAPI: " + this.transform.name);
     }
 }