コード例 #1
0
 public static Task <JsonElement> HitRecommend(RESTClient rest, string id, long no, string confirm_id, string app_id)
 => rest.PostApp("http://app.dcinside.com/api/hit_recommend",
                 new { id, no, confirm_id, app_id });
コード例 #2
0
 public static Task <JsonElement> GalleryView(RESTClient rest, string id, long no, string app_id, string confirm_id)
 => rest.PostApp("http://app.dcinside.com/api/gall_view_new.php",
                 new { id, no, app_id, confirm_id });
コード例 #3
0
 public static Task <JsonElement> RelationList(RESTClient rest, string id, string app_id)
 => rest.PostApp("http://app.dcinside.com/api/relation_list.php",
                 new { id, app_id });
コード例 #4
0
ファイル: DCID.cs プロジェクト: Zerstorer23/DCAPI
 public static Task <JsonElement> AppKey(RESTClient rest, string value_token, string?signature, string?pkg, long?vCode, string?vName, string client_token)
 => rest.PostApp("https://dcid.dcinside.com/join/mobile_app_key_verification_3rd.php",
                 new { value_token, signature, pkg, vCode, vName, client_token });
コード例 #5
0
 public static Task <JsonElement> GalleryList(RESTClient rest, string id, long page, string app_id, string confirm_id)
 => rest.PostApp("http://app.dcinside.com/api/gall_list_new.php",
                 new { id, page, app_id, confirm_id });
コード例 #6
0
 public static Task <JsonElement> CommentOK(RESTClient rest, string id, long no, string?board_id, string?best_chk, int?best_comno, string mode,
                                            string?comment_nick, string?comment_pw, string?user_id, string client_token, string?comment_memo, long?detail_idx, string app_id)
 => rest.PostApp("http://app.dcinside.com/api/comment_ok.php",
                 new { id, no, board_id, best_chk, best_comno, mode, comment_nick, comment_pw, user_id, client_token, comment_memo, detail_idx, app_id });
コード例 #7
0
 public static Task <JsonElement> DCCon(RESTClient rest, string?user_id, long?package_idx, long?detail_idx, string type, string app_id)
 => rest.PostApp("https://app.dcinside.com/api/dccon.php",
                 new { user_id, package_idx, detail_idx, type, app_id });
コード例 #8
0
ファイル: Json2.cs プロジェクト: Zerstorer23/DCAPI
 public static Task <JsonElement> CategoryNames(RESTClient rest)
 => rest.GetApp("http://json2.dcinside.com/json3/category_name.php");
コード例 #9
0
ファイル: Json2.cs プロジェクト: Zerstorer23/DCAPI
 public static Task <JsonElement> GalleryNames(RESTClient rest)
 => rest.GetApp("http://json2.dcinside.com/json3/gall_name.php");
コード例 #10
0
ファイル: Json2.cs プロジェクト: Zerstorer23/DCAPI
 public static Task <JsonElement> GalleryRanking(RESTClient rest)
 => rest.GetApp("http://json2.dcinside.com/json1/ranking_gallery.php");
コード例 #11
0
ファイル: Json2.cs プロジェクト: Zerstorer23/DCAPI
 public static Task <JsonElement> MinorRanking(RESTClient rest)
 => rest.GetApp("http://json2.dcinside.com/json1/mgallmain/mgallery_ranking.php");
コード例 #12
0
ファイル: Json2.cs プロジェクト: Zerstorer23/DCAPI
 public static Task <JsonElement> MainContent(RESTClient rest)
 => rest.GetApp("http://json2.dcinside.com/json3/main_content.php");
コード例 #13
0
ファイル: Json2.cs プロジェクト: Zerstorer23/DCAPI
 public static Task <JsonElement> AppNotice(RESTClient rest)
 => rest.GetApp("http://json2.dcinside.com/json0/app_dc_notice.php");
コード例 #14
0
ファイル: Json2.cs プロジェクト: Zerstorer23/DCAPI
 public static Task <JsonElement> UpdateNotice(RESTClient rest)
 => rest.GetApp("http://json2.dcinside.com/json0/update_notice_A_rina.php");
コード例 #15
0
 public static Task <JsonElement> GalleryModify(RESTClient rest, string?password, string?user_id, string id, long no, string app_id)
 => rest.PostApp("http://app.dcinside.com/api/gall_modify.php",
                 new { password, user_id, id, no, app_id });
コード例 #16
0
ファイル: Json2.cs プロジェクト: Zerstorer23/DCAPI
 public static Task <JsonElement> AdCharge(RESTClient rest)
 => rest.GetApp("http://json2.dcinside.com/json1/app_ad_charge.php");
コード例 #17
0
 public static Task <JsonElement> GalleryDelete(RESTClient rest, string?write_pw, string?user_id, string client_token, string id, long no, string mode, string app_id)
 => rest.PostApp("http://app.dcinside.com/api/gall_delete.php",
                 new { write_pw, user_id, client_token, id, no, mode, app_id });
コード例 #18
0
ファイル: Json2.cs プロジェクト: Zerstorer23/DCAPI
 public static Task <JsonElement> AppCheck(RESTClient rest)
 => rest.GetApp("https://json2.dcinside.com/json0/app_check_A_rina.php");
コード例 #19
0
 public static Task <JsonElement> CommentDelete(RESTClient rest, string?comment_pw, string?user_id, string client_token, string id, long no,
                                                string board_id, string mode, string?best_chk, int?best_comno, long comment_no, string app_id)
 => rest.PostApp("http://app.dcinside.com/api/comment_del.php",
                 new { comment_pw, user_id, client_token, id, no, board_id, mode, best_chk, best_comno, comment_no, app_id });
コード例 #20
0
 public static Task <JsonElement> MyGall(RESTClient rest, string user_id, string app_id)
 => rest.PostApp("http://app.dcinside.com/api/mygall.php",
                 new { user_id, app_id });
コード例 #21
0
 public static Task <JsonElement> TotalSearch(RESTClient rest, string keyword, string app_id, string confirm_id)
 => rest.PostApp("http://app.dcinside.com/api/_total_search.php",
                 new { keyword, app_id, confirm_id });
コード例 #22
0
ファイル: DCID.cs プロジェクト: Zerstorer23/DCAPI
 public static Task <JsonElement> Login(RESTClient rest, string user_id, string user_pw, string mode, string?client_token)
 => rest.PostApp("https://dcid.dcinside.com/join/mobile_app_login.php",
                 new { user_id, user_pw, mode, client_token });