hi,
i am trying to send direct messages using streaming api. but i am not able to receive any message which i have sent on my console.
i am using the following code...
i am trying to send direct messages using streaming api. but i am not able to receive any message which i have sent on my console.
i am using the following code...
var stream = Stream.CreateUserStream();
stream.MessageSent+=(sender, a)=>
{
Console.WriteLine("User posted : ", a.Message.Text);
};
stream.StartStream();