如何以编程方式检索 SharePoint 我的网站用户使用 C# 的博客文章?

发布于 11-26 17:14 字数 503 浏览 1 评论 0原文

我设法访问用户个人资料内容:

    using (SPSite ospSite = new SPSite("http://localhost:80/"))
    {
        ServerContext s = ServerContext.GetContext(ospSite);
        UserProfileManager profileManager = new UserProfileManager(s);
        UserProfile p = profileManager.GetUserProfile("some_user");

        // e.g. responsibility retrieval
        var r = p["SPS-Responsibility"];
        var responsibilities = r.GetTaxonomyTerms();
    }

但我不知道如何访问用户的博客帖子集合。

有什么建议吗?

I managed to access user profile content:

    using (SPSite ospSite = new SPSite("http://localhost:80/"))
    {
        ServerContext s = ServerContext.GetContext(ospSite);
        UserProfileManager profileManager = new UserProfileManager(s);
        UserProfile p = profileManager.GetUserProfile("some_user");

        // e.g. responsibility retrieval
        var r = p["SPS-Responsibility"];
        var responsibilities = r.GetTaxonomyTerms();
    }

But I don't know how to access users' blog posts collection.

Any advice?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅笑依然2024-12-03 17:14:47

使用 UserProfile 对象的 PersonalSite 属性检索用户的“我的网站”。

在 SPSite 循环中,子 SPWeb 对象是模板“Blog”。在此处查看模板名称:

http://blogs.msdn.com/b/richin/archive/2011/07/04/sharepoint-2010-site-template-names.aspx

一旦您找到博客站点后,您可以简单地访问SPWeb 对象的“Posts”列表中的项目。

Use the PersonalSite property of UserProfile object to retrieve the user's My Site.

In the SPSite loop through, child SPWeb objects which are of template "Blog". Check out the templates names here:

http://blogs.msdn.com/b/richin/archive/2011/07/04/sharepoint-2010-site-template-names.aspx

Once you find the blog site, you can simply access the items in "Posts" List of the SPWeb object.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文