Esempio n. 1
0
        public async Task <string> GetExpendablesInfo(int user_id)
        {
            string serverUrl    = ServerInfo.url;
            string searchAPIUrl = "/expendables.json";
            string reqUrl       = $"{serverUrl}{searchAPIUrl}?user_id={user_id}";

            WrappedHttpClient whc = new WrappedHttpClient();

            string jsonString = await whc.GetStringAsync(reqUrl);

            return(jsonString);
        }
Esempio n. 2
0
        //jsonの生データを表示するデバッグ用
        public async Task <string> GetItemJsonString(string jancode)
        {
            string serverUrl    = ServerInfo.url;
            string searchAPIUrl = "/things/search";
            string reqUrl       = $"{serverUrl}{searchAPIUrl}?jancode={jancode}";

            WrappedHttpClient whc = new WrappedHttpClient();

            string jsonString = await whc.GetStringAsync(reqUrl);

            return(jsonString);
        }
Esempio n. 3
0
        public async Task <Expendables> GetExpendablesObject(int user_id)
        {
            string serverUrl    = ServerInfo.url;
            string searchAPIUrl = "/expendables.json";
            string reqUrl       = $"{serverUrl}{searchAPIUrl}?user_id={user_id}";

            WrappedHttpClient whc        = new WrappedHttpClient();
            string            jsonString = await whc.GetStringAsync(reqUrl);

            Expendables expendables = JsonConvert.DeserializeObject <Expendables>(jsonString);

            return(expendables);
        }
Esempio n. 4
0
        public async Task <List <G_Buy_Thing> > GetBuyThingObjects(int user_id)
        {
            string serverUrl    = ServerInfo.url;
            string searchAPIUrl = "/bought_things/exists_bought";
            string reqUrl       = $"{serverUrl}{searchAPIUrl}?user_id={user_id}";
            //bought_things/exists_bought?user_id=1;


            WrappedHttpClient whc        = new WrappedHttpClient();
            string            jsonString = await whc.GetStringAsync(reqUrl);

            List <G_Buy_Thing> G_Buy_Thing_Objects_List = JsonConvert.DeserializeObject <List <G_Buy_Thing> >(jsonString);

            return(G_Buy_Thing_Objects_List);
        }
Esempio n. 5
0
        public async Task <SearchedInfo> GetItemInfo(string jancode)
        {
            string serverUrl    = ServerInfo.url;
            string searchAPIUrl = "/things/search";
            string reqUrl       = $"{serverUrl}{searchAPIUrl}?jancode={jancode}";

            SearchedInfo      thingInfo = new SearchedInfo();
            WrappedHttpClient whc       = new WrappedHttpClient();

            //Jsonを取得できなかった時の例外のハンドリング
            try {
                string jsonString = await whc.GetStringAsync(reqUrl);

                thingInfo = JsonConvert.DeserializeObject <SearchedInfo>(jsonString);
            } catch (HttpRequestException e) {
                DependencyService.Get <IMyFormsToast>().Show("HttpClient ERROR: " + e.Message);
            }
            return(thingInfo);
        }