2
Answers

Windows phone 8 Twitter Integration Issue

Vijay Yadav

Vijay Yadav

11y
1.6k
1
Hi All,

I am trying to integrate the Twitter app in Windows Phone 8 app. I have downloaded the tweetsharp package from the Nuget but I am not able to get the Twitterservice method named GetRequestToken.

Error: Teetsharp does not contain a definition for GetRequestToken.

Please help me.
Answers (2)
1
Jignesh Trivedi

Jignesh Trivedi

NA 61k 14.2m 10y
hi,

This is nothing but JSON string object. you can convert it to the object using System.Web.Script.Serialization.JavaScriptSerializer class.

like

string json = "[{\"url\":\"https://www.filepicker.io/api/file/xyz\",\"filename\":\"image.jpg\",\"mimetype\":\"image/jpeg\",\"size\":10006,\"isWriteable\":true},{\"url\":\"https://www.filepicker.io/api/file/lmn\",\"filename\":\"image2.jpg\",\"mimetype\":\"image/jpeg\",\"size\":45998,\"isWriteable\":true},{\"url\":\"https://www.filepicker.io/api/file/stu\",\"filename\":\"image3.jpg\",\"mimetype\":\"image/jpeg\",\"size\":98071,\"isWriteable\":true}]";
var objects = new JavaScriptSerializer().Deserialize<dynamic>(json);

string url = objects[0]["url"];

hope this will help you.
Accepted
0
piya p

piya p

NA 84 31.6k 10y
Hey thank you very much its working properly..

0
piya p

piya p

NA 84 31.6k 10y
"[{\"url\":\"https://www.filepicker.io/api/file/xyz\",\"filename\":\"image.jpg\",\"mimetype\":\"image/jpeg\",\"size\":10006,\"isWriteable\":true},
{\"url\":\"https://www.filepicker.io/api/file/lmn\",\"filename\":\"image2.jpg\",\"mimetype\":\"image/jpeg\",\"size\":45998,\"isWriteable\":true},
{\"url\":\"https://www.filepicker.io/api/file/stu\",\"filename\":\"image3.jpg\",\"mimetype\":\"image/jpeg\",\"size\":98071,\"isWriteable\":true}]"

are my urls
0
Jignesh Trivedi

Jignesh Trivedi

NA 61k 14.2m 10y
hi,

Is there any separator between all urls?
can you please share url string what you get from youtube what is your expected result?