{"id":33952041,"url":"https://github.com/iamleehom/rongcloud-sdk-php","last_synced_at":"2026-04-05T11:31:16.630Z","repository":{"id":62516688,"uuid":"145103193","full_name":"iamleehom/rongcloud-sdk-php","owner":"iamleehom","description":"融云服务端SDK，使用PHP实现","archived":false,"fork":false,"pushed_at":"2020-04-01T05:30:53.000Z","size":18,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"1.x","last_synced_at":"2026-01-02T15:46:26.185Z","etag":null,"topics":["rongcloud","rongcloud-sdk-php"],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/iamleehom.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-08-17T09:48:48.000Z","updated_at":"2020-09-23T05:13:47.000Z","dependencies_parsed_at":"2022-11-02T13:45:24.124Z","dependency_job_id":null,"html_url":"https://github.com/iamleehom/rongcloud-sdk-php","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/iamleehom/rongcloud-sdk-php","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamleehom%2Frongcloud-sdk-php","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamleehom%2Frongcloud-sdk-php/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamleehom%2Frongcloud-sdk-php/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamleehom%2Frongcloud-sdk-php/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iamleehom","download_url":"https://codeload.github.com/iamleehom/rongcloud-sdk-php/tar.gz/refs/heads/1.x","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamleehom%2Frongcloud-sdk-php/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31434624,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T08:13:15.228Z","status":"ssl_error","status_checked_at":"2026-04-05T08:13:11.839Z","response_time":75,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["rongcloud","rongcloud-sdk-php"],"created_at":"2025-12-12T19:20:22.865Z","updated_at":"2026-04-05T11:31:16.606Z","avatar_url":"https://github.com/iamleehom.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RongCloud PHP SDK\n[![Latest Stable Version](https://poser.pugx.org/leehom1988/rongcloud-sdk-php/v/stable)](https://packagist.org/packages/leehom1988/rongcloud-sdk-php)\n[![Total Downloads](https://poser.pugx.org/leehom1988/rongcloud-sdk-php/downloads)](https://packagist.org/packages/leehom1988/rongcloud-sdk-php)\n[![Latest Unstable Version](https://poser.pugx.org/leehom1988/rongcloud-sdk-php/v/unstable)](https://packagist.org/packages/leehom1988/rongcloud-sdk-php)\n[![License](https://poser.pugx.org/leehom1988/rongcloud-sdk-php/license)](https://packagist.org/packages/leehom1988/rongcloud-sdk-php) [![Join the chat at https://gitter.im/rongcloud-sdk-php/Lobby](https://badges.gitter.im/rongcloud-sdk-php/Lobby.svg)](https://gitter.im/rongcloud-sdk-php/Lobby?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge)\n\n融云服务端SDK，使用PHP实现。\n\n本版本是在官方SDK版本基础上开发而成，使用Guzzle替代了cURL请求实现，集成了composer库管理。\n\n## 安装\n\n推荐使用Composer安装该SDK。关于Composer的使用，请查看该链接[Composer](https://getcomposer.org/)。\n\n```bash\n$ composer require leehom1988/rongcloud-sdk-php\n```\n\n运行上面命令，将会自动安装该SDK需要的所有依赖，注意：该SDK需要在PHP5.6.0或更新的版本上运行。\n\n## 使用\n\n```php\n\u003c?php\nrequire 'vendor/autoload.php';\n\nuse LeeHom\\RongCloud\\RongClient;\nuse LeeHom\\RongCloud\\Exception\\RongCloudException;\nuse GuzzleHttp\\Exception\\GuzzleException;\n\n$client = new RongClient('xxxxxxxxxx', 'xxxxxxxxxx');\ntry {\n    $r = $client-\u003eUser()-\u003egetToken('user_id', 'test name', 'http://www.rongcloud.cn/images/logo.png');\n    echo $r;\n} catch (RongCloudException $e) {\n    echo $e-\u003egetMessage();\n} catch (GuzzleException $e) {\n    echo $e-\u003egetMessage();\n}\n```\n\n## About\nIf you have any question,Please be easy to contact me:\n- Name: LeeHom\n- Email: lh411937409@gmail.com\n\nHope it can help You,Just Enjoy It! 😁😁😁😁\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE) for more information.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiamleehom%2Frongcloud-sdk-php","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiamleehom%2Frongcloud-sdk-php","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiamleehom%2Frongcloud-sdk-php/lists"}