Changeset 3357646
- Timestamp:
- 09/08/2025 07:38:20 AM (7 months ago)
- Location:
- o365-user-authentication/trunk
- Files:
-
- 3 edited
-
function/o365_azure_login_settings.php (modified) (1 diff)
-
libraries/o365-user-auth-online-graph-service-access-helper.php (modified) (1 diff)
-
o365-user-auth-online.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
o365-user-authentication/trunk/function/o365_azure_login_settings.php
r2278275 r3357646 50 50 51 51 $custom_curl = o365UserAuthOnlineGraphServiceAccessHelper::getFeed('groups'); 52 if( isset( $custom_curl->{'odata.error'} ) ){ 52 53 if( isset( $custom_curl->{'odata.error'} ) ){ 53 54 echo "<div class='apps_error'>ERROR: ".$custom_curl->{'odata.error'}->{'message'}->{'value'}."</div>"; 54 55 } -
o365-user-authentication/trunk/libraries/o365-user-auth-online-graph-service-access-helper.php
r2278275 r3357646 33 33 34 34 $jsonOutput = json_decode($output['body']); 35 36 if( isset( $jsonOutput->{'odata.error'} ) ){35 36 if( isset( $jsonOutput->{'odata.error'} ) || isset( $jsonOutput->error ) ){ 37 37 return $jsonOutput; 38 38 //return $jsonOutput->{'odata.error'}->{'message'}->{'value'}; 39 }elseif( isset( $jsonOutput->error ) ){ 40 return $jsonOutput; 39 41 } 40 42 else 41 43 { 44 print_r($jsonOutput); echo '----'; 42 45 /* There is a field for odata metadata that we ignore and just consume the value */ 43 46 return $jsonOutput->{'value'}; -
o365-user-authentication/trunk/o365-user-auth-online.php
r2988014 r3357646 3 3 * Plugin Name: Office 365 User Authentication 4 4 * Plugin URI: http://www.wpintegrate.com/ 5 * Version: 2. 65 * Version: 2.7 6 6 * Author: wpintegrate.com 7 7 * Author URI: http://www.wpintegrate.com/
Note: See TracChangeset
for help on using the changeset viewer.