This is a migrated thread and some comments may be shown as answers.

Autocomplete to MS graph People and authToken

1 Answer 266 Views
AutoComplete
This is a migrated thread and some comments may be shown as answers.
Ryan
Top achievements
Rank 1
Veteran
Ryan asked on 08 May 2020, 03:54 PM

Need your help Looking for a jQuery example of how to pass authToken and bind autocomplete to https://graph.microsoft.com/v1.0/me/people/?$search=(?)

1 Answer, 1 is accepted

Sort by
0
Ivan Danchev
Telerik team
answered on 12 May 2020, 12:53 PM

Hello Ryan,

We don't have an example of binding to MS Graph People, but let me provide some details on how the AutoComplete and its dataSource work in a remote binding scenario.

The AutoComplete's dataSource sends an AJAX request to the end point to get data. Since this is a standard AJAX request you can use the request's settings: https://api.jquery.com/jquery.ajax/ to pass an Authorization token. This can be done with the beforeSend callback, e.g.

<input id="products" />

<script>
  $(document).ready(function() {
    var dataSource = new kendo.data.DataSource({
      transport: {
        read:  {
          url: "https://my-end-point",
          dataType: "json",
          beforeSend: function(xhr) {
            xhr.setRequestHeader('Authorization', 'bearer ' + sessionStorage.accessToken);
          } 
        }
      }
    });

    $("#products").kendoAutoComplete({
      dataTextField: "ProductName",
      dataSource: dataSource,
    });
  });
</script>

As for the data itself, the AutoComplete expects JSON, so here's an exemplary response that contains the data of 4 items:

[
  {
    "ProductID": 1,
    "ProductName": "Chai",
    "UnitPrice": 18,
    "UnitsInStock": 39,
    "Discontinued": false
  },
  {
    "ProductID": 2,
    "ProductName": "Chang",
    "UnitPrice": 19,
    "UnitsInStock": 17,
    "Discontinued": false
  },
  {
    "ProductID": 3,
    "ProductName": "Aniseed Syrup",
    "UnitPrice": 10,
    "UnitsInStock": 13,
    "Discontinued": false
  },
  {
    "ProductID": 4,
    "ProductName": "Chef Anton's Cajun Seasoning",
    "UnitPrice": 22,
    "UnitsInStock": 53,
    "Discontinued": false
  }
]


Regards,
Ivan Danchev
Progress Telerik

Progress is here for your business, like always. Read more about the measures we are taking to ensure business continuity and help fight the COVID-19 pandemic.
Our thoughts here at Progress are with those affected by the outbreak.
Tags
AutoComplete
Asked by
Ryan
Top achievements
Rank 1
Veteran
Answers by
Ivan Danchev
Telerik team
Share this question
or