-
Notifications
You must be signed in to change notification settings - Fork 218
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Jmprieur/separate graph #534
Conversation
@darrelmiller : FYI and in case you want to provide feedback @schmid37, @gavinmnz, I think this should solve your issue. Please provide feedback (and try out the branch jmprieur/SeparateGraph |
<Product>Microsoft Identity Web</Product> | ||
<Description> | ||
This package enables ASP.NET Core Web apps and Web APIs to use the Microsoft identity platform (formerly Azure AD v2.0). | ||
This package is specifically used for web applications, which sign-in users, and protected web APIs, call Microsoft Graph. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This package is specifically used for web applications, which sign-in users, and protected web APIs, call Microsoft Graph. | |
This package is specifically used for web applications, which sign-in users, and protected web APIs, which call Microsoft Graph. |
<Company>Microsoft Corporation</Company> | ||
<Product>Microsoft Identity Web</Product> | ||
<Description> | ||
This package enables ASP.NET Core Web apps and Web APIs to use the Microsoft identity platform (formerly Azure AD v2.0). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This package enables ASP.NET Core Web apps and Web APIs to use the Microsoft identity platform (formerly Azure AD v2.0). | |
This package enables ASP.NET Core web apps and web APIs to use the Microsoft identity platform (formerly Azure AD v2.0). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jmprieur i'll go through the files and fix this everywhere.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
after you merge
<Company>Microsoft Corporation</Company> | ||
<Product>Microsoft Identity Web</Product> | ||
<Description> | ||
This package enables ASP.NET Core Web apps and Web APIs to use the Microsoft identity platform (formerly Azure AD v2.0). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This package enables ASP.NET Core Web apps and Web APIs to use the Microsoft identity platform (formerly Azure AD v2.0). | |
This package enables ASP.NET Core web apps and web APIs to use the Microsoft identity platform (formerly Azure AD v2.0). |
<Product>Microsoft Identity Web</Product> | ||
<Description> | ||
This package enables ASP.NET Core Web apps and Web APIs to use the Microsoft identity platform (formerly Azure AD v2.0). | ||
This package is specifically used for web applications, which sign-in users, and protected web APIs, call Microsoft Graph Beta API. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This package is specifically used for web applications, which sign-in users, and protected web APIs, call Microsoft Graph Beta API. | |
This package is specifically used for web applications, which sign-in users, and protected web APIs, which call Microsoft Graph Beta API. |
public const string UserReadScope = "user.read"; | ||
public const string GraphBaseUrlV1 = "https://graph.microsoft.com/v1.0"; | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hmmmm...not a fan of repeating code. especially for maintainability and fixes. i can look into how to resolve this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Constants class in Identity.Web is internal. Perhaps set InterntalsVisibleTo to Identity.Web.Graph?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks you for the PR comments. Addressed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🕐
looks great. one comment on the re-using of some of the constant classes. let's try to fix that before merging. In reply to: 685816103 [](ancestors = 685816103) |
also...did you check the dependency across packages? In reply to: 685852275 [](ancestors = 685852275,685816103) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix for #506: