|
@@ -6,6 +6,7 @@ using System.Linq;
|
|
|
using System.Text;
|
|
|
using System.Threading;
|
|
|
using System.Threading.Tasks;
|
|
|
+using Windows.Data.Json;
|
|
|
using Windows.Globalization;
|
|
|
using Windows.Web.Http;
|
|
|
using Windows.Web.Http.Filters;
|
|
@@ -111,9 +112,9 @@ namespace KdanCommon.CMSCollection
|
|
|
{
|
|
|
var querys = new List<KeyValuePair<string, string>>();
|
|
|
querys.Add(new KeyValuePair<string, string>("filter[status][_eq]", "published"));
|
|
|
- querys.Add(new KeyValuePair<string, string>("filter[platform][_in]", appType));
|
|
|
+ querys.Add(new KeyValuePair<string, string>("filter[appTypes][_contains]", appType));
|
|
|
querys.Add(new KeyValuePair<string, string>("fields", "*"));
|
|
|
- var result = await httpClient.GetRequest(pdfViewerEventBarSettingUri, querys);
|
|
|
+ var result = await httpClient.GetRequest(pdfOtherSettingUri, querys);
|
|
|
if (result.StatusCode == HttpStatusCode.Ok)
|
|
|
{
|
|
|
var jsonString = await result.Content.ReadAsStringAsync();
|