API-вызов работает в IOS, но не работает в почтальоне и Android - PullRequest
0 голосов
/ 23 апреля 2019

Я называю тот же API в объективе-C и Android.Но он работает в Objective-C и не работает в Android также почтальон.Вот код объектива-с

NSString *string = [NSString stringWithFormat:@"%@?option=com_globaltalk&task=api.getProfile", userBaseURL];
    NSURL *url = [NSURL URLWithString:string];
    NSURLRequest *request = [NSURLRequest requestWithURL:url];

    AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:request];
    operation.responseSerializer = [AFJSONResponseSerializer serializer];

    [operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, NSDictionary* responseObject) {
...
}

Это вывод объектива-с

{
    activation = "";
    block = 0;
    email = "***";
    groupTitle = "SXL - HC1 - B";
    groups =     {
        14 = 14;
    };
    guest = 0;
    id = 476;
    lastResetTime = "0000-00-00 00:00:00";
    lastvisitDate = "2019-04-23 12:54:23";
    name = "\U4f59\U4f73\U8431";
    options =     {
        companyid = 10448;
        domain = xwyy;
        "history_limit" = 5;
        key = ***;
        "save_history" = 0;
        studentgroupid = "";
        teachergroupid = 11;
        url = "***";
        userid = ***;
        userpassword = ***;
    };
    otep = "";
    otpKey = "";
    params = "{\"admin_style\":\"\",\"admin_language\":\"\",\"language\":\"\",\"editor\":\"\",\"helpsite\":\"\",\"timezone\":\"\"}";
    password = "***";
    "password_clear" = "";
    registerDate = "2019-04-21 02:41:26";
    requireReset = 0;
    resetCount = 0;
    sendEmail = 0;
    username = ***;
}

Это код Android

RequestParams params = new RequestParams();
        params.put("option", "com_globaltalk");
        params.put("task", "api.getProfile");

        client.get(userBaseURL, params, new JsonHttpResponseHandler() {
            @Override
            public void onSuccess(int statusCode, org.apache.http.Header[] headers, JSONObject response) {
                try {

И выводаналогично target-c, но id, name, username, email ... имеют значение null

Полный URL-адрес конечной точки API равен

http://kidoABC.com/index.php?option=com_globaltalk&task=api.getProfile

Перед вызовом этого APIесть еще один API

http://kidoABC.com/index.php?option=com_jbackend&view=request&action=post&module=user&resource=login&username=Eva2&password=123456

Первый API хорошо работает в Android и почтальоне, но второй API не работает.

Спасибо, что прочитали мой вопрос

...