{"id":19876182,"url":"https://github.com/orvice/embrr","last_synced_at":"2025-07-27T14:40:31.197Z","repository":{"id":77016974,"uuid":"99921714","full_name":"orvice/embrr","owner":"orvice","description":null,"archived":false,"fork":false,"pushed_at":"2015-08-11T10:17:09.000Z","size":940,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-01T01:41:24.793Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"PHP","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/orvice.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG","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":"2017-08-10T12:41:30.000Z","updated_at":"2019-10-12T15:35:21.000Z","dependencies_parsed_at":"2023-03-01T20:31:01.429Z","dependency_job_id":null,"html_url":"https://github.com/orvice/embrr","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/orvice/embrr","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/orvice%2Fembrr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/orvice%2Fembrr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/orvice%2Fembrr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/orvice%2Fembrr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/orvice","download_url":"https://codeload.github.com/orvice/embrr/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/orvice%2Fembrr/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267371413,"owners_count":24076599,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-27T02:00:11.917Z","response_time":82,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":[],"created_at":"2024-11-12T16:31:04.185Z","updated_at":"2025-07-27T14:40:31.160Z","avatar_url":"https://github.com/orvice.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"embrr, a fork from embr\n========\nThis is a twitter web client fork from [embr](https://code.google.com/p/embr/), mainly based on `r91` and merged necessary changes until the latest revisions, updated to Twitter REST API `v1.1` and have some improved features.\n\nYou can download the zip archive of current version [here](https://github.com/AstroProfundis/embrr/zipball/master) if you don't want to use `git-clone`.\n\nHow to Install\n--------\nThe installation of embrr is pretty much the same with embr's, you just need to get the source, rename `config.sample.php` in `/lib` to `config.php`, edit it with your own app information and upload it to your hosting directory.\n\nAnd here are some tips you may want to know:\n\n * embrr requires `php-curl` and `php-bcmath`\n * while not necessarily required, `php-mcrypt` is recommended\n * embrr is compatible with PHP from version 5.2 to 5.5, we didn't test it on 5.1 or older versions\n\nInstalling in sub-directory\n--------\nIf you need to install embrr in a sub-directory of your website, say, in `/embrr`, you'll need to adjust the `.htaccess` file with `/embrr/user.php` and `/embrr/status.php` instead of `/user.php` and `/status.php`.\n\nnginx\n--------\nFor nginx users, you'll need to add these lines to your nginx config file:\n\n    location / {\n        if (!-f $request_filename) {\n            rewrite ^/(\\d+)$ /status.php?id=$1 last;\n            rewrite ^/(\\w+)$ /user.php?id=$1 last;\n            break;\n        }\n    }\nAnd of course, adjust it if you are in a sub-directory.\n\nNotes\n--------\nIf you're having issues changing pages or sending DMs, try modify your `php.ini` as follows:\n\n    precision = 24 ;Use a value lager than 19 to replace the default 14\n\n----\n\nembrr, 一个修改版的 embr\n========\n\n这是一个从 [embr](https://code.google.com/p/embr/) 修改而来的 twitter 网页端，主要基于 `r91` 版本并合并了后续修订版的必要更新，升级到了 Twitter REST API `v1.1` 并有一些功能上的改进。\n\n如果不想使用 `git-clone` 获取代码，可以点[这里](https://github.com/AstroProfundis/embrr/zipball/master)下载当前版本的 zip 压缩包。\n\n安装方法\n--------\n安装 embrr 的方法和 embr 原版基本相同，只需要下载代码包，重命名 `/lib` 中的 `config.sample.php` 文件为 `config.php`, 编辑此配置文件填入适当的 app 信息，再将代码上传至网站空间即可。\n\n有几点值得注意的地方是：\n\n * embrr 依赖于 `php-curl` 和 `php-bcmath` 组件\n * 虽然不是必需依赖，但建议安装 `php-mcrypt` 组件\n * embrr 兼容 PHP 5.2 至 5.5 的版本，我们没有测试过 5.1 及之前版本\n\n在二级目录中安装\n--------\n如果需要将 embrr 安装在二级目录中，例如安装在 `/embrr` 中，则需要修改 `.htaccess` 文件，使用 `/embrr/user.php` 与 `/embrr/status.php` 替换 `/user.php` 和 `/status.php`.\n\nnginx\n--------\n对于 nginx 用户，需要在配置文件中加入以下代码：\n\n    location / {\n        if (!-f $request_filename) {\n            rewrite ^/(\\d+)$ /status.php?id=$1 last;\n            rewrite ^/(\\w+)$ /user.php?id=$1 last;\n            break;\n        }\n    }\n同样，如果在二级目录中安装则需适当调整。\n\n附注\n--------\n如果翻页或者发送 DM 时遇到问题，尝试在 `php.ini` 中做如下修改：\n\n    precision = 24 ;使用大于 19 的值替换默认值 14\n\n----\nAs I'm not an expert of PHP nor twitter API, do expect bugs everywhere.\n\nAll helps are welcomed!\n\n请做好 bug 满天飞的心理准备以及欢迎拍砖和协助修改。\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Forvice%2Fembrr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Forvice%2Fembrr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Forvice%2Fembrr/lists"}