简体   繁体   English

PHP 卷曲请求 - Diawi API

[英]PHP Curl Request - Diawi API

I'm struggling to get my Curl request working.我正在努力让我的 Curl 请求工作。 The aim of the code is to upload a file to diawi.com using their API.该代码的目的是使用他们的 API 将文件上传到 diawi.com。 This is my first attempt at using curl, I'm unsure of the correct syntax.这是我第一次尝试使用 curl,我不确定正确的语法。

Here is my code:这是我的代码:

$curl = curl_init();

curl_setopt_array($curl, array(
    CURLOPT_RETURNTRANSFER => 1,
    CURLOPT_URL => 'https://upload.diawi.com/',
    CURLOPT_HTTPHEADER => array(
        "cache-control: no-cache",
        "content-type: multipart/form-data"
    ),
    CURLOPT_USERAGENT => 'Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.2 (KHTML, like Gecko) Chrome/22.0.1216.0 Safari/537.2',
    CURLOPT_POST => 1,
    CURLOPT_POSTFIELDS => array(
        token => 'token',
        file => 'http://example.com/apps/myapp.ipa',
        find_by_udid => 0,
        wall_of_apps => 0,
        callback_url => 'http://www.example.com/apps/diawi_response.php',
        callback_email => 'me@company.com'
    )
));

$resp = curl_exec($curl);
curl_close($curl);
echo $resp;

At the moment the response I'm getting is "No file uploaded".目前我得到的回应是“没有上传文件”。

Here is the example request from the documentation:以下是文档中的示例请求:

$ curl https://upload.diawi.com/ -F token='TOKEN' \
-F file=@MyApp.ipa \
-F find_by_udid=0 \
-F wall_of_apps=1 \
-F password='installation password' \
-F comment='Comment on the build' \
-F callback_url='http://www.example.com/my-diawi-callback-url' \
-F callback_email='me@company.com'

Any help you can give me would be greatly appreciated.您能给我的任何帮助将不胜感激。

Test token: MrdS5g9MpZhKn8jlJNuANRlmPuSBkBxWX1LTIptn8p测试令牌:MrdS5g9MpZhKn8jlJNuANRlmPuSBkBxWX1LTIptn8p

Test file: http://defu.se/ESFileExplorer.apk测试文件: http : //defu.se/ESFileExplorer.apk

Use this source.使用此来源。

<?php
    ini_set('display_errors', 1);
    $url = "https://upload.diawi.com/"; 
    $filename = realpath('./ESFileExplorer.apk');
    if ($filename != '')
    {
        $headers = array("Content-Type: multipart/form-data"); // cURL headers for file uploading
        $postfields = array(
            "token"             => 'YOUR-TOKEN',
            "file"              => new CurlFile( $filename ),
            "find_by_udid"      => 0,
            "wall_of_apps"      => 1,
            "callback_email"    => 'xxxxx@gmail.com'
            );
        $ch = curl_init();
        $options = array(
            CURLOPT_URL => $url,
            CURLOPT_HEADER => true,
            CURLOPT_POST => 1,
            CURLOPT_HTTPHEADER => $headers,
            CURLOPT_POSTFIELDS => $postfields,
            CURLOPT_USERAGENT => 'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:47.0) Gecko/20100101 Firefox/47.0'
        ); // cURL options
        curl_setopt_array($ch, $options);
        curl_exec($ch);
        if(!curl_errno($ch))
        {
            // echo $ch;
            $info = curl_getinfo($ch);
            if ($info['http_code'] == 200)
                $errmsg = "File uploaded successfully";
            // print_r($info);
        }
        else
        {
            $errmsg = curl_error($ch);
        }
        curl_close($ch);
    }
    else
    {
        $errmsg = "Please select the file";
    }
    echo $errmsg;
?>

Result I got结果我得到

HTTP/1.1 100 Continue HTTP/1.1 200 OK Server: nginx Content-Type: application/json Transfer-Encoding: chunked Connection: keep-alive Vary: Accept-Encoding Cache-Control: no-cache Date: Tue, 26 Jul 2016 19:40:33 GMT Strict-Transport-Security: max-age=15768000 {"job":"U37Nq7ta3Q711AsbvYrODFfvTLoyNwY4XslCFI7oV0"}File uploaded successfully HTTP/1.1 100 继续 HTTP/1.1 200 OK 服务器:nginx 内容类型:应用程序/json 传输编码:分块连接:保持活动变化:接受编码缓存控制:无缓存日期:2016 年 7 月 26 日星期二 19 :40:33 GMT Strict-Transport-Security: max-age=15768000 {"job":"U37Nq7ta3Q711AsbvYrODFfvTLoyNwY4XslCFI7oV0"}文件上传成功

在此处输入图片说明

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM