Twitter上でいいねしたツイートをリストに出力するアプリケーションを作ろうとしています。
リンクの動画を参考に作成を進めています。
参考動画
認証が上手くいっていないのか、userオブジェクトがnullになってしまい、先に勧めません。
C#
1using System; 2using System.Collections.Generic; 3using System.Linq; 4using System.Text; 5using System.Threading.Tasks; 6 7using System.Xml.Linq; 8 9namespace XML_Util 10{ 11 public class API_Info 12 { 13 public string API_Key; 14 public string API_Secret_key; 15 public string Bearer_token; 16 public string Access_token; 17 public string Access_secret_token; 18 19 20 public API_Info() 21 { 22 //カレントディレクトリのXMLファイルを読み込む 23 //メンバ変数にキーを代入 24 string current = Environment.CurrentDirectory; 25 string path = string.Concat(current, "\config.xml"); 26 XML_reading(path); 27 } 28 29 protected void XML_reading(string path) 30 { 31 XDocument document = XDocument.Load(path); 32 XElement element = document.Element("ACOUNT"); 33 this.API_Key = element.Element("API_KEY").Value.ToString(); 34 this.API_Secret_key = element.Element("API_SECRET_KEY").ToString(); 35 this.Bearer_token = element.Element("BEARER_TOKEN").ToString(); 36 this.Access_token = element.Element("ACCESS_TOKEN").ToString(); 37 this.Access_secret_token = element.Element("ACCESS_SECRET_TOKEN").ToString(); 38 } 39 } 40}
C#
1using System; 2using System.Collections.Generic; 3using System.ComponentModel; 4using System.Data; 5using System.Drawing; 6using System.Linq; 7using System.Text; 8using System.Threading.Tasks; 9using System.Windows.Forms; 10 11using XML_Util; 12using Tweetinvi; 13using Microsoft.VisualBasic; 14 15 16namespace Get_like_tweets 17{ 18 public partial class Form1 : Form 19 { 20 XML_Util.API_Info keys; 21 public Form1() 22 { 23 this.keys = new API_Info(); 24 InitializeComponent(); 25 } 26 27 private void button1_Click(object sender, EventArgs e) 28 { 29 //認証の練習 30 Auth.SetUserCredentials(this.keys.API_Key, this.keys.API_Key,this.keys.Access_token ,this.keys.Access_secret_token); 31 32 var user = User.GetAuthenticatedUser(); 33 } 34 } 35}
認証の方法が間違っているのか、あるいは他の方法をご存じの方がいらしたらご教授お願いします。
まず公式githubのサンプルソースがそのまま動くかどうか確認してみるのが良いのではないでしょうか。
回答1件
あなたの回答
tips
プレビュー