├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── ask-a-question.md │ └── bug_report.md ├── dependabot.yml ├── policies │ └── resourceManagement.yml └── workflows │ ├── auto-merge-dependabot.yml │ └── gradle.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── app-auth ├── README.md ├── RegisterAppForAppOnlyAuth.ps1 └── graphapponlytutorial │ ├── .gitattributes │ ├── .gitignore │ ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── graphapponlytutorial │ │ │ ├── App.java │ │ │ └── Graph.java │ │ └── resources │ │ └── graphapponlytutorial │ │ └── oAuth.properties.example │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── devx.yml ├── qs.json └── user-auth ├── README.md ├── RegisterAppForUserAuth.ps1 ├── graphtutorial ├── .gitattributes ├── .gitignore ├── app │ ├── build.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── graphtutorial │ │ │ ├── App.java │ │ │ └── Graph.java │ │ └── resources │ │ └── graphtutorial │ │ └── oAuth.properties.example ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle └── version /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ask-a-question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/.github/ISSUE_TEMPLATE/ask-a-question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/policies/resourceManagement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/.github/policies/resourceManagement.yml -------------------------------------------------------------------------------- /.github/workflows/auto-merge-dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/.github/workflows/auto-merge-dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/gradle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/.github/workflows/gradle.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/app-auth/README.md -------------------------------------------------------------------------------- /app-auth/RegisterAppForAppOnlyAuth.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/app-auth/RegisterAppForAppOnlyAuth.ps1 -------------------------------------------------------------------------------- /app-auth/graphapponlytutorial/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/app-auth/graphapponlytutorial/.gitattributes -------------------------------------------------------------------------------- /app-auth/graphapponlytutorial/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/app-auth/graphapponlytutorial/.gitignore -------------------------------------------------------------------------------- /app-auth/graphapponlytutorial/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/app-auth/graphapponlytutorial/app/build.gradle -------------------------------------------------------------------------------- /app-auth/graphapponlytutorial/app/src/main/java/graphapponlytutorial/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/app-auth/graphapponlytutorial/app/src/main/java/graphapponlytutorial/App.java -------------------------------------------------------------------------------- /app-auth/graphapponlytutorial/app/src/main/java/graphapponlytutorial/Graph.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/app-auth/graphapponlytutorial/app/src/main/java/graphapponlytutorial/Graph.java -------------------------------------------------------------------------------- /app-auth/graphapponlytutorial/app/src/main/resources/graphapponlytutorial/oAuth.properties.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/app-auth/graphapponlytutorial/app/src/main/resources/graphapponlytutorial/oAuth.properties.example -------------------------------------------------------------------------------- /app-auth/graphapponlytutorial/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/app-auth/graphapponlytutorial/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /app-auth/graphapponlytutorial/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/app-auth/graphapponlytutorial/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /app-auth/graphapponlytutorial/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/app-auth/graphapponlytutorial/gradlew -------------------------------------------------------------------------------- /app-auth/graphapponlytutorial/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/app-auth/graphapponlytutorial/gradlew.bat -------------------------------------------------------------------------------- /app-auth/graphapponlytutorial/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/app-auth/graphapponlytutorial/settings.gradle -------------------------------------------------------------------------------- /devx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/devx.yml -------------------------------------------------------------------------------- /qs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/qs.json -------------------------------------------------------------------------------- /user-auth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/user-auth/README.md -------------------------------------------------------------------------------- /user-auth/RegisterAppForUserAuth.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/user-auth/RegisterAppForUserAuth.ps1 -------------------------------------------------------------------------------- /user-auth/graphtutorial/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/user-auth/graphtutorial/.gitattributes -------------------------------------------------------------------------------- /user-auth/graphtutorial/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/user-auth/graphtutorial/.gitignore -------------------------------------------------------------------------------- /user-auth/graphtutorial/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/user-auth/graphtutorial/app/build.gradle -------------------------------------------------------------------------------- /user-auth/graphtutorial/app/src/main/java/graphtutorial/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/user-auth/graphtutorial/app/src/main/java/graphtutorial/App.java -------------------------------------------------------------------------------- /user-auth/graphtutorial/app/src/main/java/graphtutorial/Graph.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/user-auth/graphtutorial/app/src/main/java/graphtutorial/Graph.java -------------------------------------------------------------------------------- /user-auth/graphtutorial/app/src/main/resources/graphtutorial/oAuth.properties.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/user-auth/graphtutorial/app/src/main/resources/graphtutorial/oAuth.properties.example -------------------------------------------------------------------------------- /user-auth/graphtutorial/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/user-auth/graphtutorial/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /user-auth/graphtutorial/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/user-auth/graphtutorial/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /user-auth/graphtutorial/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/user-auth/graphtutorial/gradlew -------------------------------------------------------------------------------- /user-auth/graphtutorial/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/user-auth/graphtutorial/gradlew.bat -------------------------------------------------------------------------------- /user-auth/graphtutorial/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoftgraph/msgraph-training-java/HEAD/user-auth/graphtutorial/settings.gradle -------------------------------------------------------------------------------- /user-auth/version: -------------------------------------------------------------------------------- 1 | 1.2 2 | --------------------------------------------------------------------------------