You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
458 B
29 lines
458 B
<?php
|
|
|
|
$app = require __DIR__ . '/app.php';
|
|
|
|
/** @var \WeWork\Api\Menu $menu */
|
|
$menu = $app->get('menu');
|
|
|
|
try {
|
|
$menu->create([
|
|
'button' => [
|
|
[
|
|
'type' => 'click',
|
|
'name' => '今日歌曲',
|
|
'key' => 'V1001_TODAY_MUSIC'
|
|
]
|
|
]
|
|
]);
|
|
} catch (Exception $e) {
|
|
}
|
|
|
|
try {
|
|
$menu->get();
|
|
} catch (Exception $e) {
|
|
}
|
|
|
|
try {
|
|
$menu->delete();
|
|
} catch (Exception $e) {
|
|
}
|
|
|