- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/jehna/objective-facebook
- 软件文档: https://github.com/jehna/objective-facebook
软件介绍
该项目使用面向对象方法封装了 Facebook 的 JavaScript 开发包。
示例代码:
<script src="app.js"></script>
var FB = new OOFB('your_access_token_here');
// Get the info on Mark Zuckenberg (he's id is '4')
var mark = new FB.User(4);
// Since that is a promise, we can fire it up (to fetch the data) like this:
mark.get(function(user) {
console.log(user.name); // Prints "Mark Zuckerberg"
});
Domain-Driven Design Distilled
Vaughn Vernon / Addison-Wesley Professional / 2016-6-2 / USD 36.99
Domain-Driven Design (DDD) software modeling delivers powerful results in practice, not just in theory, which is why developers worldwide are rapidly moving to adopt it. Now, for the first time, there......一起来看看 《Domain-Driven Design Distilled》 这本书的介绍吧!
