tkc49/kintone-sdk-for-wordpress

Kintone sdk for WordPress is library for WordPress

1.7.2 2024-10-11 11:31 UTC

This package is auto-updated.

Last update: 2025-04-11 12:27:47 UTC


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"