Download the PHP package ldg/asaapi without Composer

On this page you can find all versions of the php package ldg/asaapi. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package asaapi

苹果asa数据报告获取apple_search_ads

苹果asa数据报告获取apple_search_ads,php版接口

composer快速安装:

composer require ldg/asaapi

内置请求方法:

GET: _geturl 获取数据

POST:_posturl 提交数据

PUT:_puturl 修改数据

DELETE:_deleteurl 删除数据

(传入参数请用数组json_encode)

苹果文档地址:https://developer.apple.com/documentation/apple_search_ads/

使用方法

$orgid = '';

$client_id = '';

$team_id = '';

$key_id = '';

$keypem = ''; 私钥

$asa = new asaapi($orgid, $client_id, $team_id, $key_id, $keypem);

$url = 'https://api.searchads.apple.com/api/v4/campaigns';

$cam = $asa->_geturl($url);

var_dump($cam);


All versions of asaapi with dependencies

PHP Build Version
Package Version
Requires php Version >=7.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package ldg/asaapi contains the following files

Loading the files please wait ...