• FedEx物流接口


    1:api地址

    2:文档地址

     https://www.fedex.com/secure-login/zh-cn/#/login-credentials

     https://developer.fedex.com/api/zh-cn/home.html

    3:注册账号

    4:新建组织

    5:新建项目

     

    6:项目添加api

     7:记录项目key和密钥

    8:accessToken生成

     地址:https://apis-sandbox.fedex.com/oauth/token


    响应:

    {
    "access_token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpX……",
    "token_type": "bearer",
    "expires_in": 3600,
    "scope": "CXS"
    }

     

    9:获取费率api

      

    入参:

    注意:accountNumber是你注册后邮箱收到的accountNumber

    {
    "accountNumber": {
    "value": "XXXXX7364"
    },
    "requestedShipment": {
    "shipper": {
    "address": {
    "postalCode": 65247,
    "countryCode": "US"
    }
    },
    "recipient": {
    "address": {
    "postalCode": 75063,
    "countryCode": "US"
    }
    },
    "pickupType": "DROPOFF_AT_FEDEX_LOCATION",
    "rateRequestType": [
    "ACCOUNT",
    "LIST"
    ],
    "requestedPackageLineItems": [
    {
    "weight": {
    "units": "LB",
    "value": 10
    }
    }
    ]
    }
    }

  • 相关阅读:
    TweenMax 前台脚本库
    如何使用CSS Sprites技术进行图片合并
    QQ群开放接口
    使用 Hexo 生成一套静态博客网页
    把表插入数据库
    WCF
    SOA
    登录验证
    登录菜单权限验证
    GetJsonByDataTable
  • 原文地址:https://www.cnblogs.com/wugh8726254/p/16811198.html
Copyright © 2020-2023  润新知