TwitterのAPIキーとCoreTweetを使って、
C#でウェルカムメッセージと同時にクリックリプライを表示するプログラムをしておりますが、
クイックリプライのパラメーター設定方法がわかりません。
tokens.DirectMessages.WelcomeMessages.New(
text => "message",
quick_reply_type => "quick_reply_type:options ,options:{{label:aaa, description:test,metadata: external_id_1}}"
);
これで以下のエラーがかえってきます。
CoreTweet.TwitterException: welcome_message.message_data.quick_reply: Unknown quick_reply type quick_reply_type:options ,options:{{label:aaa, description:test,metadata: external_id_1}} ---> System.Net.WebException: リモート サーバーがエラーを返しました: (400) 要求が不適切です
「quck_reply_type」を外して
tokens.DirectMessages.WelcomeMessages.New(text => "message");
とすれば、messageがツイッターのウェルカムメッセージに表示されるところまでは
確認できておます。
以上、
お手数をおかけしますがご教示のほどよろしくお願いいたします。
あなたの回答
tips
プレビュー