Coder Social home page Coder Social logo

Comments (6)

m-hellesen avatar m-hellesen commented on August 10, 2024

Hi there, thanks for reporting. For clarification: Are you reporting that the add in is not getting updated for some users? Or is this that the html is not updated? Can you provide more details about how the users are getting this blank screen? This is within the add in code, so I want to see how I can help.

from office-js.

bferreira avatar bferreira commented on August 10, 2024

Hi, I don't have access to all the computers, but from the only one I could see, I didn't see any errors on the console.
I don't have access to the computer anymore but I can ask for a session.
What should I look for? Is there a way to force the update of all files?

from office-js.

bferreira avatar bferreira commented on August 10, 2024

I got more screenshots from a client. I don't think they are getting the latest version of the add-in. Although it says it is:
Screenshot 2024-05-08 at 12 22 22

When then install they get:
Screenshot 2024-05-08 at 12 12 14
On the manifest I have all the urls authorized:
image

from office-js.

m-hellesen avatar m-hellesen commented on August 10, 2024

Are you attempting to launch a dialog with your auth flow? Can you tell me how that flow works? What files do you believe are missing?

from office-js.

bferreira avatar bferreira commented on August 10, 2024

No we don't attempt to launch the dialog.
Opening a separate window has been the issue.

We use https://auth0.com/docs/get-started/authentication-and-authorization-flow/authorization-code-flow-with-pkce
It is working fine in some machines, using different login methods (Microsoft, google, Email)
You can login yourself with your Microsoft account, you just won't get any data

from office-js.

bferreira avatar bferreira commented on August 10, 2024

The only dialog window we have was because Microsoft made us support office online
When we get the callback from auth we do:


import { AuthIdentityService } from '../Utils/authIdentityService';

(() => {
  Office.initialize = () => {
    const authService = new AuthIdentityService();
    authService.loginCallback().then(() => {
      const isDialog = Office.context?.platform === 'OfficeOnline';
      if (isDialog) {
        window.location.href = '/excel-plugin/login.html';
      } else {
        window.location.href = '/excel-plugin/index.html';
      }
    });
  };
})();

But it does not get there.

from office-js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.