Месечни архиви: Февруари 2014

Како да одредите Луѓе како пребарување Опсег / Содржина Извор со употреба на Sharepoint 2013 ОДМОР API

I had reason to work with the SharePoint 2013 Search API via REST for the first time. I wanted to search for people, not documents. The key learning here is that you specify content sources via its GUID (or at least in this case). The following jQuery snippet shows how:

    loadExpertsAsync: функција() {

        jQuery.support.cors = вистина;

        $.ajax({
            рачно: овој.CreateFullApiUrl() +
                "?querytext='portals'&sourceid='b09a7990-05ea-4af9-81ef-edfab16c4e31'" +
                "&selectproperties='LinkedInProfileUrl,GoogleCirclesProfileUrl,BALargeProfilePictureUrls,BAGridPictures,WorkEmail,Skills,AboutMe,Interests,JobTitle,PastProjects,PictureURL,PreferredName,TwitterHandle,LinkedInProfileUrl,PreferredName,GoogleCirclesProfileUrl'" +
                "&rowlimit=99",
            метод: "GET",
            headers: { "Accept": "application/json; odata=verbose" },
            cache: лажни,
            success: функција (резултира) {

Во мојот случај, I’m running the API against SharePoint online. To get the GUID, I followed these steps:

  1. Access the SharePoint admin center
  2. Select “search” from the left hand navigation
  3. Select “Manage Result Sources”
  4. Select “Local People Results”
  5. Look at the URL.

My URL looked something like:

https://xyzzy-admin.sharepoint.com/_layouts/15/searchadmin/EditResultSource.aspx?level=tenant&sourceid=b09a7990%2D05ea%2D4af9%2D81ef%2Dedfab16c4e31&view=1

The sourceid parameter is what worked for me.

(I understand that the sourceid may actually be a sort of permanent thing with SP, but I’ll always check anyway 🙂 ).

</крајот>

undefinedДа се ​​претплатите на мојот блог.

Следете ме на Twitter во http://www.twitter.com/pagalvin

Пример SharePoint ОДМОР повици

Here’s a set of sample REST calls that work for me and may help you out as well. Како на 02/2014, има два примери 🙂

  1. Reference a Column With Spaces In Its Name
  2. Reference a Multi-Select Column
  3. Perform a People Search via REST

 

I’ll add to this as time passes.

Here are some useful inks I’ve found as well:

Reference a Column With Spaces In Its Name

I create a custom list with a column named “Blog Author” (space between Blog and Author).

The $select to reference that column is:

image

Simply replace the space with “_x0020_”. We see the _x0020_ in many examples across the internets and REST is no different.

If you don’t do that, you’re liable to get an error message like this:

The expression “Blog Author” is not valid.

Easy enough.

Reference a Multi-Select Lookup Column

Set up:

  1. Create a custom list named Categories.
  2. Add some categories. I added categories thusly:image
  3. Create another custom list called MockBlog and add Categories as a multi-select list column (or site column if that’s how you roll).

Add some items to your Mockblog list and you’re ready.

An Ajax style call using jQuery will look something like this:

serverUrl  = "/_api/web/lists/GetByTitle('MockBlog')/предмети" +
             "?$select=Title,Categories/Title,Blog_x0020_Author/Title" + 
             "&$expand=Blog_x0020_Author,Категории";

We’re telling SharePoint “Give me the title for all the Categories (Categories/Title). Get the actual values for Наслов од страна на $expanding the Categories list.” (My RESTful paraphrasing is probably pretty loose, but this how I’m interpreting it).

If you’re doing this via JavaScript and using Fiddler to look at the output, you get something like this in return:

 

image

(The above is a JSON object)

Perform a People Search via REST

I blogged about this separately. The key is to specify a sourceid parameter whose value is the GUID of the Local People content source. (Content sources used to be called scopes and it’s my-oh-my so hard not to call everything a scope for me!).

Прочитајте повеќе за тоа овде: http://www.mstechblogs.com/paul/?p=10385

 

</крајот>

undefinedДа се ​​претплатите на мојот блог.

Следете ме на Twitter во http://www.twitter.com/pagalvin

Брз и лесен: Креирај SharePoint Мапа Користење на одмор

There are a lot of resources around that show how to do this, but I couldn’t find a comprehensive go-to link, so here we are.

You can create a SharePoint site using the REST API.  Here’s a fully baked example:

<!--
    SiteRequestForm.html: Collect information and create a site for the user.
-->

<центар>
<маса>
    <tr>
        <td>Site Name:</td>
        <td><влез тип="text" име="SiteName" ид="SiteName" /></td>
    </tr>
    <tr>
        <td colspan="2">
            <влез тип="submit" ид="CreateSiteButton" вредност="Create the Site" />
        </td>
    </tr>
</маса>
</центар>

<скрипта src="../Plugins/jquery-1.11.0.min.js"></скрипта>

<скрипта>
var CreateSiteLogicContainer = {

    createSiteData: {
            "parameters": {
                __metadata: { "type": "SP.WebInfoCreationInformation" },
                Url: "Paultest1",
                Наслов: "Paultest1",
                Опис: "rest-created web by Paul!",
                Јазик: 1033,
                WebTemplate: "sts",
                UseUniquePermissions: лажни
            }
    },

    createSite: функција () {

        jQuery.support.cors = вистина;

        CreateSiteLogicContainer.createSiteData.parameters.Url = $("#SiteName").val();
        
        $.ajax({
            рачно: "https://bigapplesharepoint.sharepoint.com/NBAIADev/_api/web/webinfos/add",
            метод: "POST",

            headers: {
                "Accept": "application/json; odata=verbose",
                "content-type": "application/json;odata=verbose",
                "X-RequestDigest": $("#__REQUESTDIGEST").val()
            },

            податоци: JSON.stringify(CreateSiteLogicContainer.createSiteData),

            success: функција () { alert("success"); },
            грешка: функција () { alert("error"); }

        });
    },

    wireUpForm: функција () {
        $("#CreateSiteButton").кликнете(функција () {
            alert("About to try and create the site.");
            CreateSiteLogicContainer.createSite();
        });
    }


}

CreateSiteLogicContainer.wireUpForm();

</скрипта>

When successful, you get a JSON packet in response like this:

image

My key thoughts and learnings from this include:

  • This approach uses jQuery.  Во мојот случај, my jQuery library is located in “../plugins.”  You’ll want to change that to point to your favorite JQ location.
  • You can copy and paste that whole snippet into a Content Editor Web Part on a page and it should work just fine.  You’ll want to change the end point of the API call and make sure you reference JQ correctly.
  • The URL is relative to your API’s endpoint.  Во мојот случај, it’s creating sub-sites underneath https://bigapplesharepoint.com
  • You don’t need to provide a content-length. Some blog posts and MSDN document implies that you do, but happened for me automatically, which I assume is being handled by the $.ajax call itself.
  • This line is required in order to avoid a “forbidden” response: "X-RequestDigest": $("#__REQUESTDIGEST").val().  There are other ways to do it, but this is pretty nice.  I have lost the link to blog that provided this shortcut.  H/T to you, mysterious blogger!

Good luck and hope this helps someone out.

</крајот>

undefinedДа се ​​претплатите на мојот блог.

Следете ме на Twitter во http://www.twitter.com/pagalvin

Надминат проблем досадни со Релативна Url адреси во SharePoint Брзи Стартување

I wanted to add a link to the quick launch navigation the other day and SharePoint told me:

image

Pure text version of that is:

Ensure that the URL is valid and begins with either a valid character (a number sign (#) or forward slash (/)) or a valid supported protocol (на пример, ‘http://", ‘https://", ‘file://", ‘ftp://", ‘mailto:", 'Вести:").

"Лим и сипаници!" Реков.

А за да се заобиколи ова е да се користи JavaScript за да најде познат алка во брзо стартување и замени своето однесување.

Да ги тестираат оваа, додадете нов линк до вашиот сајт тест thusly:

image

Јас се користи jQuery. To solve it, добијат некои JavaScript и jQuery врз страница користење на вашите омилени техника и со линија на кодот се допаѓа ова:

 

$(документ).подготвени( функција () {

    $("на:содржи("Тест URL заменувачки)").кликнете(функција () { alert("променето однесување клик!"); се врати лажни;});

});

И вашиот чичко Боб.

На менувачот jQuery наоѓа секој <на> ознака дека има "Тест URL замена" во своето име. Вие може да сакате да се најде мелодија дека во зависност од вашата врска и како.

На .Кликнете(функција() поголем ефект што и SharePoint би направиле кога корисникот ќе кликне. Осигурете "return false", или на друго место ќе го направи вашиот работи и потоа обидете се да го href нешто премногу, што не е речиси сигурно вашата цел.

Ова беше направено и тест во онлајн средина SharePoint но треба да работат добро во 2010 и порано премногу.

</крајот>

undefinedДа се ​​претплатите на мојот блог.

Следете ме на Twitter во http://www.twitter.com/pagalvin

Брзо и едноставно: SharePoint ОДМОР Повик враќа само 100 Евиденција

I’ve been working on a public facing web site for my SharePoint practice here in New York and it uses a lot of JavaScript and REST calls to show content.

During mainline development, I create a small dataset with just 10 or so rows in a custom list and my REST calls all pulled from there.  Once I bumped up the list to have a few hundred rows of data to test for anticipated growth, I found that I was getting exactly 100 rows returned back on my REST calls.

This is a very simple thing to address.  Во мојот случај (and I believe in most cases), the default REST calls to SharePoint (and possibly as an industry standard?) се врати 100 rows.  To return more than the default, use the $top parameter on your call, како и во:

GET /Insights Dev/_api/web/lists/GetByTitle(‘MockBlog’)/предмети?$select=ID,Наслов,Categories/Title,Blog_x0020_Author/Title,DatePublished,BlogSummary&$expand=Blog_x0020_Author,Категории&$filter=&$top=9999

I picked 9999 in this case since I know that growth-wise, there won’t be more than 200 or so rows added to this list in a year.  If it becomes ungainly, we can implement some paging down the road.

</крајот>

undefinedДа се ​​претплатите на мојот блог.

Следете ме на Twitter во http://www.twitter.com/pagalvin

Брзо и едноставно: Реши "Невалиден URL параметар” Проблемот со UpdateListItems во lists.asmx

When working with UpdateListItems via lists.asmx, it’s easy to generate the error:

Invalid URL Parameter.

The URL provided contains an invalid Command or Value. Please check the URL again.

You can get this error when you forget to include ID in the the list of fields to update.  Овој, like a lot of these SP web services, is a bit counterintuitive since you need to include the ID in the ID attribute of the <Method> element.  And you’re not updated ID and probably never want to in the first place.

This SOAP envelope works:

<soapenv:Плик xmlns:soapenv ='http://schemas.xmlsoap.org/soap/envelope/'>
  <soapenv:Тело>                      
    <UpdateListItems xmlns='http://schemas.microsoft.com/sharepoint/soap/'>                     
      <listName>{C712E2EA-54E1-47AD-9D99-1848C7773E2F}</listName>                     
        <updates>                     
         <Batch OnError="Continue">
          <Method ID="1" Cmd="Update">
            <Field Name="CooperativeLock">locked!</Поле>
            <Field Name="ID">1</Поле>
          </Method>
        </Batch>                     
        </updates>                
      </UpdateListItems>             
  </soapenv:Тело>         
</soapenv:Плик>

If you strip out the ID field reference then you’ll get the annoying “Invalid URL parameter” message.

</крајот>

undefinedДа се ​​претплатите на мојот блог.

Следете ме на Twitter во http://www.twitter.com/pagalvin