用于在 Facebook 墙上发布的 SVN 提交后挂钩
我在运行 Windows 7 x64 的本地计算机上使用 Visual SVN Server。
我正在寻找一种最简单的方法来创建一个到我的一些本地存储库的提交后挂钩,允许我将提交信息发布到我的 Facebook 墙上。
如果在提交时我的电脑没有连接到互联网(它是笔记本电脑),那么额外的功能将是对消息进行排队。
最好的解决方案不需要安装任何其他软件。我能够编写 HTTP 连接程序,但是我想使用现有的软件(如果有的话)。
I'm using Visual SVN Server on my local machine running Windows 7 x64.
I'm looking for a simplest way to create a post-commit hook to some of my local repositories, allowing me to post commit information to my Facebook wall.
Bonus feature would be queueing the messages, if at the time of commit my pc isn't connected to Internet (it's laptop PC).
Best solution wouldn't require installing any other software. I am able of writing HTTP connecting program, I'd however like to use existing software, if any could be helpful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经成功实现了一个解决方案,在每次提交后在 Facebook 上创建一个新的提要对象(即创建一个新帖子)。该配方尚未经过充分测试,您应该将其视为概念证明。我不会使用真实的 Facebook 帐户来测试这一点。
环境:
操作:
为 SVN 服务器的提交消息创建 Facebook 应用程序。
配置 Subversion 提交后挂钩。
必须启用 Powershell 脚本执行< /a> 代表 VisualSVN 服务器服务用户帐户。
运行命令:
New-FBConnection -AppID <您的应用程序 ID>; -RedirectUri <您的应用程序域-URL>
现在您会看到一个带有 Facebook 页面的 Web 浏览器,要求您登录并允许访问 SVN 服务器 Facebook Web 应用程序。登录并同意。
启动 VisualSVN 服务器管理器,选择存储库并转到挂钩管理,
选择编辑提交后挂钩,
>
输入以下代码并单击“确定”:
<块引用>
创建
C:\Repositories\\hooks\Facebook.ps1
并在文件中输入以下代码:<块引用>
就是这样!尽管消息没有格式化,但该解决方案还有很大的改进空间。这个房间可以比作整个宇宙的大小。
I've managed to implement a solution that creates a new feed object (i.e. a creates a new post) on Facebook after each commit. The recipe is not fully tested and you should consider it as a proof of concept. I would not use a real Facebook account to test this.
Environment:
Actions:
Creating Facebook application for our SVN server's commit messages.
Configuring Subversion post-commit hook.
Powershell script execution must be enabled for the VisualSVN Server service user account.
Run the command:
New-FBConnection -AppID <YOUR-APP-ID> -RedirectUri <YOUR-APP-DOMAIN-URL>
Now you see a web-browser with a Facebook page requesting you to login and to allow access for the SVN server Facebook web app. Login and agree.
Start VisualSVN Server Manager, choose a repository and go to hooks management,
Choose to edit a post-commit hook,
Enter the following code and click OK:
Create
C:\Repositories\<repo-name>\hooks\Facebook.ps1
and enter the following code to the file:That's it! Though the messages are not formatted and the solution has a GREAT ROOM FOR IMPROVEMENT. The room can be compared to the size of the whole universe.