c# - OneDrive api get all photos -


PLS can help me with a live API I need to get all the photos from OneDrive "I / Album "and then call the album in other ways. Is there some method for this? I'm missing something? I try Google but the links are dead.

Thanks

This could be the value from which all the user's photos are found For example, take a look at the code as it contains functions to load data from an album:

  public async zero load data () {LiveConnectClient Client = New LiveConnectClient (App.Session) ; LiveOperationResult albumOperationResult = Wait for the client. GetAsync ("me / albums"); Dynamic Album Result = albumOperationResult.Result; Forash (Dynamic album in the album, RES.Data) {var group = new skydive album (album. Id, album.name, album.name, @ "MS-APX: /// Assets / DARGRAP"), album Diskasan); LiveOperationResult pictureOperationResult = Wait for the client. GetAsync (album.id + "/ files"); Dynamic picture result = Photo operation result result; Leading (dynamic image in the picture. Resetdata) {var pictureItem = New SkyDriveItem (picture.id, picture.name, picture.name, picture.source, picture.description, picture.description, group); Group.Items.Add (pictureItem); } This.AllGroups.Add (group); }}  

Comments

Popular posts from this blog

import - Python ImportError: No module named wmi -

Editing Python Class in Shell and SQLAlchemy -

c# - MySQL Parameterized Select Query joining tables issue -