IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 开发测试 -> php Aramexs 物流 createShipments -> 正文阅读

[开发测试]php Aramexs 物流 createShipments

使用 php对接 Aramexs 物流

一、打开 Aramexs 官网 https://www.aramex.com/sa/en/aramex-home,并注册账号

二、注册后,设置一下自己是发货地址(地址记得用国际的国家编码哦)

三、熟悉开发者文档,由于业务需要,只对接了发货(createShipments),其他功能未对接
https://www.aramex.com/docs/default-source/resourses/resourcesdata/shipping-services-api-manual.pdf

在这里插入图片描述

四、通过github获取一下大佬代码 https://github.com/hakanersu/amaran-laravel
在大佬的基础上,调整了一下
https://github.com/yanggcn/php-aramex

五、上代码

  /**
     * Notes:发货
     * Interface:createShipment
     * @return array
     */
    public function createShipment(){
        $result = Aramex::createShipment([
            'shipper' => [
                'name' =>  'SA',//发货人地址 与你填写的地址保持一致哦
                'email' => 'email@users.companies',//邮箱
                'phone'      => '+123456789982',//电话
                'cell_phone' =>'+123456789982',//电话
                'country_code' =>  'SA',//国家编码
                'city' =>  'SA',//测试
                'zip_code' => '',//邮编
                'line1' => '',//发货地址
/*                'line2' => '',
                'line3' => ' ',*/
            ],
         'consignee' => [//收货人信息
                'name' => 'Steve',
                'email' => 'email@users.companies',
                'phone'      => '+123456789982',
                'cell_phone' => '+321654987789',
                'country_code' => 'AE',
                'city' => 'Abadilah',
                'zip_code' =>  '',
                'line1' => 'Line1 Details',
                'line2' => 'Line2 Details',
                'line3' => 'Line3 Details',
            ],
            'shipping_date_time' => time() + 50000,
            'due_date' => time() + 60000,
            'comments' => 'No Comment',
            'pickup_location' => 'Reception',
            'customs_value_amount' => 100,
            'weight' => 1,
            'number_of_pieces' => 1,
            'description' => '商品描述',//商品描述
        ]);
        if ($result->HasErrors) {
	         return $result->Notifications->Notification;
        }elseif ($result->errors){
   			return $result->Notifications->Notification;
        }else{
            $results = $result->Shipments->ProcessedShipment;
//            $results = json_decode( json_encode($results),true);
            $label_url =  $results->ShipmentLabel->LabelURL;//获取物流编码图片
            $shipment_no = $results->ID;//物流编码
        }
        return  $results ;
    }

六,获取国家城市信息

  /**
     * Notes:获取国家/城市 数据
     * @param string $country_code 国家编号
     * @param $is_city 0=国家;1=城市
     */
    public function getCountries($country_code='',$is_city=0){
        if($is_city){
            $list = Aramex::fetchCities($country_code);
        }else{
            $list = Aramex::fetchCountries($country_code);
        }

        return $list;
    }

	 public static function fetchCities($code, $nameStartWith = null)
    {
        $soapClient = AramexHelper::getSoapClient(AramexHelper::LOCATION);

        $aramex = new Core;

        $aramex->initializeFetchCities($code, $nameStartWith);

        $call = $soapClient->FetchCities($aramex->getParam());
        
        $ret = new \stdClass;

        if ($call->HasErrors) {
            $ret->error = 1;
            $ret->errors = $call->Notifications;
        }
        else{
            $ret = $call;
        }

        return $ret;
    } 

七,注意事项
1、国家城市数据比较多,如果存数据库里,查询的时候需要优化一下,否则你会卡死的
2、发货时填写的国家区号,需要注意下,用的international code 哦!

  开发测试 最新文章
pytest系列——allure之生成测试报告(Wind
某大厂软件测试岗一面笔试题+二面问答题面试
iperf 学习笔记
关于Python中使用selenium八大定位方法
【软件测试】为什么提升不了?8年测试总结再
软件测试复习
PHP笔记-Smarty模板引擎的使用
C++Test使用入门
【Java】单元测试
Net core 3.x 获取客户端地址
上一篇文章      下一篇文章      查看所有文章
加:2022-03-30 18:55:28  更:2022-03-30 18:58:19 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/18 0:48:26-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码