Meteor Oauth访问其他网站(500px instagr.am)

时间:2012-04-28 17:00:57

标签: meteor instagram

我的meteor网络应用http://meteor.app基本上是许多其他网站的代理:http://500px.comhttp://instagr.am

当用户在http://meteor.app上搜索关键字时,我希望我的流星服务器代码能够搜索http://500px.comhttp://instagr.am
(实际上我的前端调用我的服务器端点http://meteor.app/search,它将对500px和instrag.am进行Oauth调用) (我现在使用connect-auth atm对oauth没有问题)

我不确定如何在meteor上创建http://meteor.app/search端点,因为一切都围绕着ORM / Collection,在这个阶段我不使用持久性。

那么我是否使用和定制Meteor.Collection类来查询instragr.am端点或?

1 个答案:

答案 0 :(得分:2)

我认为您的客户端代码应该使用:Meteor.call,它将调用Meteor.method。 http://docs.meteor.com/#meteor_methods

此方法可以更新n行instagram的集合并删除所有集合行,并在调用Meteor.method时重新填充集合。

虽然答案很模糊,但有一个模糊的问题:)。

Madewith app是一个很好的起点: https://github.com/meteor/madewith 这使用API​​调用等。