How to create a UserActivity in Xamarin Forms and publish to the Microsoft Graph









up vote
0
down vote

favorite












I'm not sure if this is achievable at present, but I'm trying to create a UserActivity in my Xamarin Forms (Android) app that will be published to the Microsoft Graph. There doesn't seem to be much guidance on how to use the Microsoft Graph .NET SDK and I'm struggling to get this working. The ideal solution would be to publish a UserActivity after visiting a page in Xamarin Forms, and then make this available on Timeline, so the app could be launched again on Android through Microsoft Launcher or Windows Timeline.



So far, I've integrated the authentication flow into the app, and given the required permissions. I've had a go at the coding and this is what I've done so far:



 public UserActivity CreateUserActivity(string appActivityId)

var activity = new UserActivity()

AppActivityId = appActivityId,
ActivitySourceHost = "https://graphexplorer.blob.core.windows.net",
AppDisplayName = "My App",
ActivationUrl = "https://developer.microsoft.com/en-us/graph/graph-explorer",
FallbackUrl = "https://developer.microsoft.com/en-us/graph/graph-explorer",
VisualElements = new VisualInfo()

Description = "A user activity made through the Graph .NET SDK tests",
BackgroundColor = "#008272",
DisplayText = "Graph .NET SDK Test User Activity",
Attribution = new ImageInfo()

IconUrl = "https://graphexplorer.blob.core.windows.net/explorerIcon.png",
AlternateText = "Microsoft .NET SDK",
AddImageQuery = false,
,
,
;
return activity;


private async void TrialButton_Clicked(object sender, EventArgs e)

await graphClient.Me.Activities.Request().AddUserActivityAsync(CreateUserActivity("hello"));



While I realise I've not set my own ActivitySourceHost, etc. I keep getting the following error:



System.NullReferenceException: Object reference not set to an instance of an object.



when calling AddUserActivityAsync, so I'm not sure if I have the basic code correct for creating and publishing the UserActivity. Any help would be much appreciated.










share|improve this question

























    up vote
    0
    down vote

    favorite












    I'm not sure if this is achievable at present, but I'm trying to create a UserActivity in my Xamarin Forms (Android) app that will be published to the Microsoft Graph. There doesn't seem to be much guidance on how to use the Microsoft Graph .NET SDK and I'm struggling to get this working. The ideal solution would be to publish a UserActivity after visiting a page in Xamarin Forms, and then make this available on Timeline, so the app could be launched again on Android through Microsoft Launcher or Windows Timeline.



    So far, I've integrated the authentication flow into the app, and given the required permissions. I've had a go at the coding and this is what I've done so far:



     public UserActivity CreateUserActivity(string appActivityId)

    var activity = new UserActivity()

    AppActivityId = appActivityId,
    ActivitySourceHost = "https://graphexplorer.blob.core.windows.net",
    AppDisplayName = "My App",
    ActivationUrl = "https://developer.microsoft.com/en-us/graph/graph-explorer",
    FallbackUrl = "https://developer.microsoft.com/en-us/graph/graph-explorer",
    VisualElements = new VisualInfo()

    Description = "A user activity made through the Graph .NET SDK tests",
    BackgroundColor = "#008272",
    DisplayText = "Graph .NET SDK Test User Activity",
    Attribution = new ImageInfo()

    IconUrl = "https://graphexplorer.blob.core.windows.net/explorerIcon.png",
    AlternateText = "Microsoft .NET SDK",
    AddImageQuery = false,
    ,
    ,
    ;
    return activity;


    private async void TrialButton_Clicked(object sender, EventArgs e)

    await graphClient.Me.Activities.Request().AddUserActivityAsync(CreateUserActivity("hello"));



    While I realise I've not set my own ActivitySourceHost, etc. I keep getting the following error:



    System.NullReferenceException: Object reference not set to an instance of an object.



    when calling AddUserActivityAsync, so I'm not sure if I have the basic code correct for creating and publishing the UserActivity. Any help would be much appreciated.










    share|improve this question























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I'm not sure if this is achievable at present, but I'm trying to create a UserActivity in my Xamarin Forms (Android) app that will be published to the Microsoft Graph. There doesn't seem to be much guidance on how to use the Microsoft Graph .NET SDK and I'm struggling to get this working. The ideal solution would be to publish a UserActivity after visiting a page in Xamarin Forms, and then make this available on Timeline, so the app could be launched again on Android through Microsoft Launcher or Windows Timeline.



      So far, I've integrated the authentication flow into the app, and given the required permissions. I've had a go at the coding and this is what I've done so far:



       public UserActivity CreateUserActivity(string appActivityId)

      var activity = new UserActivity()

      AppActivityId = appActivityId,
      ActivitySourceHost = "https://graphexplorer.blob.core.windows.net",
      AppDisplayName = "My App",
      ActivationUrl = "https://developer.microsoft.com/en-us/graph/graph-explorer",
      FallbackUrl = "https://developer.microsoft.com/en-us/graph/graph-explorer",
      VisualElements = new VisualInfo()

      Description = "A user activity made through the Graph .NET SDK tests",
      BackgroundColor = "#008272",
      DisplayText = "Graph .NET SDK Test User Activity",
      Attribution = new ImageInfo()

      IconUrl = "https://graphexplorer.blob.core.windows.net/explorerIcon.png",
      AlternateText = "Microsoft .NET SDK",
      AddImageQuery = false,
      ,
      ,
      ;
      return activity;


      private async void TrialButton_Clicked(object sender, EventArgs e)

      await graphClient.Me.Activities.Request().AddUserActivityAsync(CreateUserActivity("hello"));



      While I realise I've not set my own ActivitySourceHost, etc. I keep getting the following error:



      System.NullReferenceException: Object reference not set to an instance of an object.



      when calling AddUserActivityAsync, so I'm not sure if I have the basic code correct for creating and publishing the UserActivity. Any help would be much appreciated.










      share|improve this question













      I'm not sure if this is achievable at present, but I'm trying to create a UserActivity in my Xamarin Forms (Android) app that will be published to the Microsoft Graph. There doesn't seem to be much guidance on how to use the Microsoft Graph .NET SDK and I'm struggling to get this working. The ideal solution would be to publish a UserActivity after visiting a page in Xamarin Forms, and then make this available on Timeline, so the app could be launched again on Android through Microsoft Launcher or Windows Timeline.



      So far, I've integrated the authentication flow into the app, and given the required permissions. I've had a go at the coding and this is what I've done so far:



       public UserActivity CreateUserActivity(string appActivityId)

      var activity = new UserActivity()

      AppActivityId = appActivityId,
      ActivitySourceHost = "https://graphexplorer.blob.core.windows.net",
      AppDisplayName = "My App",
      ActivationUrl = "https://developer.microsoft.com/en-us/graph/graph-explorer",
      FallbackUrl = "https://developer.microsoft.com/en-us/graph/graph-explorer",
      VisualElements = new VisualInfo()

      Description = "A user activity made through the Graph .NET SDK tests",
      BackgroundColor = "#008272",
      DisplayText = "Graph .NET SDK Test User Activity",
      Attribution = new ImageInfo()

      IconUrl = "https://graphexplorer.blob.core.windows.net/explorerIcon.png",
      AlternateText = "Microsoft .NET SDK",
      AddImageQuery = false,
      ,
      ,
      ;
      return activity;


      private async void TrialButton_Clicked(object sender, EventArgs e)

      await graphClient.Me.Activities.Request().AddUserActivityAsync(CreateUserActivity("hello"));



      While I realise I've not set my own ActivitySourceHost, etc. I keep getting the following error:



      System.NullReferenceException: Object reference not set to an instance of an object.



      when calling AddUserActivityAsync, so I'm not sure if I have the basic code correct for creating and publishing the UserActivity. Any help would be much appreciated.







      .net xamarin.forms microsoft-graph






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 10 at 15:27









      hlbmallo

      468




      468



























          active

          oldest

          votes











          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













           

          draft saved


          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53240422%2fhow-to-create-a-useractivity-in-xamarin-forms-and-publish-to-the-microsoft-graph%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown






























          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes















           

          draft saved


          draft discarded















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53240422%2fhow-to-create-a-useractivity-in-xamarin-forms-and-publish-to-the-microsoft-graph%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          這個網誌中的熱門文章

          Barbados

          How to read a connectionString WITH PROVIDER in .NET Core?

          Node.js Script on GitHub Pages or Amazon S3