Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- var url = "http://api.jugemkey.jp/api/horoscope/free/" + DateTime.Now.ToString("yyyy/MM/dd");
- var req = WebRequest.Create(url);
- using (var res = req.GetResponse())
- using (var s = res.GetResponseStream())
- {
- dynamic json = DynamicJson.Parse(s);
- string st = json.horoscope.????; // ここがわかない
- }
Add Comment
Please, Sign In to add comment