Hi there,
I have studied a bit more your request and come up with a solution.
Just to give you some news. I have slightly modified the design of 0.9 and it is now able to get json from any query performed on Twitter (not all the queries are implemented but the design is).
Concerning your issue which is more focused on stream. Here are the different steps you can follow to do store the Json from any Stream<Tweet> in tweetinvi (0.8.3.21).
I hope this is temporary solution for you until the release of version 0.9.0.0.
Kind Regards,
Linvi
I have studied a bit more your request and come up with a solution.
Just to give you some news. I have slightly modified the design of 0.9 and it is now able to get json from any query performed on Twitter (not all the queries are implemented but the design is).
Concerning your issue which is more focused on stream. Here are the different steps you can follow to do store the Json from any Stream<Tweet> in tweetinvi (0.8.3.21).
-
Download the source code of Tweetinvi
- Go in Tweetinvi > Tweet.cs
-
Add a field string RawJson { get; set; }
- Go in Streaminvi > SimpleStream.cs
- Line 93 after (ITweet t = new Tweet(jsonTweet);)
-
Add : t.RawJson = x;
- Go in Streaminvi > FilteredStream.cs
- Line 283 replace : 'return new Tweet(tweetObject);' by
-
'var t = new Tweet(tweetObject);
t.RawJson = jsonTweet;'
I hope this is temporary solution for you until the release of version 0.9.0.0.
Kind Regards,
Linvi