Mario Apra

Results 112 comments of Mario Apra

Hello @asppsa! I've never used a sharepoint drive before, but I can look at this if I'm able to create one driver for myself. Also fell free to create a...

Thank you for the feedback. I think the problem is that we are looking to another directory to find the associated drives because we renamed the package name. This should...

FYI: I'm debugging here and thinking what is the best way to fix this issue. The problem is because the name change, there are a couple of things that have...

Ok, so probably what I said before is not the root cause. Debugging the application looks like when querying `https://[domain]-my.sharepoint.com/_api/v2.0/drives` it's returning nothing!! I will really need to change the...

@ndit-dev not that I'm aware of. That's the problem of relying on Microsoft, they can change their API without telling anyone... BTW if you find a workaround, please let me...

@ndit-dev I will take a look into the links that you gave me later. In this meantime, can you test the solution from #26? It should work

@ndit-dev The project that you sent is using the graph-api. Please check the changes that I've made on #26. If it works, I will merge into master.

@bastianbowe2000 Sorry about that, I was not so clear. Checkout this branch https://github.com/derrix060/onedriveClient/tree/%2326-use-ms-graph-api and remember to install the graph-sdk from the submodule: ```sh git clone https://github.com/derrix060/onedriveClient.git cd onedriveClient git checkout...

Hello @baztian thanks for the feedback. Can you confirm your python version and the hash for the commits: ```sh $ python --version $ git rev-parse --verify HEAD # Output should...

I've just seen that the commands to install the graph-sdk-python were wrong. Try this instead: ```sh git clone https://github.com/derrix060/onedriveClient.git cd onedriveClient git checkout "#26-use-ms-graph-api" pip3 install . # new part...