tkc49 / kintone-sdk-for-wordpress
Kintone sdk for WordPress is library for WordPress
1.7.2
2024-10-11 11:31 UTC
Requires
- php: >=5.6
Requires (Dev)
- phpunit/phpunit: ^5.6
README
Install
$ composer require tkc49/kintone-sdk-for-wordpress
Activate automatic update in your WordPress plugin.
<?php
// Autoload
require_once( dirname( __FILE__ ) . '/vendor/autoload.php' );
$kintone = array(
'domain' => 'xxx.cybozu.com/',
'token' => 'your-token',
'basic_auth_user' => '',
'basic_auth_pass' => '',
'app' => 'your-app-id',
);
$data = array(
'field_code' => array(
'value' => 'your-value'
),
'field_code' => array(
'value' => 'your-value'
),
'field_code' => array(
'value' => 'your-value'
),
);
new tkc49\Kintone_SDK_For_WordPress\Kintone_API::post( $kintone, $data );
Changelog
1.7.2 (2024-10-05)
- Fix: Resolved an infinite loop bug in getRecords method when $limit is set to 500
- Refactor: General code refactoring
1.7.0 (2023-01-11)
- Fix: Addressed "Uncaught Error: Cannot use object of type WP_Error as array"