00001 using System;
00002 using System.Collections.Generic;
00003 using System.Linq;
00004 using System.Text;
00005
00006 namespace NicoLiveTools {
00007
00011 public static class OfficialApi {
00015 public static string Login {
00016 get {
00017 return "https://secure.nicovideo.jp/secure/login?site=nicolive_antenna";
00018 }
00019 }
00020
00024 public static string GetAlertStatus {
00025 get {
00026 return "http://live.nicovideo.jp/api/getalertstatus";
00027 }
00028 }
00029
00033 public static string GetAlertInfo {
00034 get {
00035 return "http://live.nicovideo.jp/api/getalertinfo";
00036 }
00037 }
00038
00044 public static string GetStreamInfo(string lv) {
00045 return "http://live.nicovideo.jp/api/getstreaminfo/lv" + lv;
00046 }
00047
00053 public static string GetStreamInfo(int lv) {
00054 return GetStreamInfo(lv.ToString());
00055 }
00056 }
00057 }