Code Monkey home page Code Monkey logo

Comments (7)

ralagana avatar ralagana commented on July 18, 2024

Can you provide us some details on exactly how you're trying this? Do you have code snippets to support this?

Also, have you tried reproducing this issue with our demo KitchenSink App https://github.com/webex/webex-android-sdk-example? If not, can you try it and let us know your results?

from webex-android-sdk.

CDL24 avatar CDL24 commented on July 18, 2024

Yes I have tried with KitchenSink 3.7.0 sample app and in that when we loggedIn successfully and go to 'Initiate Call' option and click on 'Space' Tab at that time getSpaces() method is called and return success but with 0 data. i have checked this multiple times but not getting spaceId. You can reproduce this issue in KitchenSink 3.7.0 apk (Already there in webex git page).

The same steps are working fine in KitchenSink 3.6.0 apk. In this getSpace() api will take some time to return spaceId but it will return spaceId.

from webex-android-sdk.

ralagana avatar ralagana commented on July 18, 2024

@CDL24 thanks for this information. We'll test this out and let you know our results.

from webex-android-sdk.

CDL24 avatar CDL24 commented on July 18, 2024

is there any update on this ?

from webex-android-sdk.

ralagana avatar ralagana commented on July 18, 2024

Hi @CDL24, sorry for the delay. We tried reproducing this but to be honest it's not yet clear exactly which class you're debugging this through. Can you provide us the name of class in KitchenSink App where you're debugging this method? Can you also share a screenshot of what you're seeing? Reason we ask is that there is no "getSpaces()" method in our KitchenSink app. We have getSpacesList() , getspaceById(), getSpace(), but not the one you mentioned. Let us know on these points please.

from webex-android-sdk.

CDL24 avatar CDL24 commented on July 18, 2024

Hi @ralagana below is method i am checking in KithenSink 3.7.0 app
*
fun fetchSpacesList(teamId: String?, maxSpaces: Int, sortBy: SortBy): Observable<List> {
return Single.create<List> { emitter ->
webex.spaces.list(teamId, maxSpaces, null, sortBy, CompletionHandler { result ->
if (result.isSuccessful) {
emitter.onSuccess(result.data?.map {
SpaceModel.convertToSpaceModel(it)
} ?: emptyList())
} else {
emitter.onError(Throwable(result.error?.errorMessage))
}
})
}.toObservable()
}
*

It will not return space. Even you can check in KitchenSink sample apk 3.7.0. After login into app just go to Spaces Tab there you will not get space.

from webex-android-sdk.

ralagana avatar ralagana commented on July 18, 2024

@CDL24 thanks for this info. I tested with the same KS app on v3.7 and debugged that method to find that it does in fact return the space ID for each space in the list. See here: https://www.evernote.com/shard/s375/sh/5ebf260d-2440-b706-3a94-7b6bdaf15fe7/f63d981d115307d579175b038cd55c04 for one example.

Note that the space ID is returned simply as "id" by this method, given that it's implied already with the method's name that this is for spaces. Are you not seeing this on your side? Please provide a screenshot of the same.

from webex-android-sdk.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.