Skip to main content
Question

Looking for the bundle ID for Facebook's Oculus app

  • June 6, 2018
  • 2 replies
  • 23 views

Forum|alt.badge.img+1

I'm trying to arrange the home screen layout to include Facebook's Oculus app, but the app's bundle ID can't be found. Does anybody have this info, and would like to share?

2 replies

Forum|alt.badge.img+13
  • Honored Contributor
  • June 6, 2018

Hopefully this info will help you like it helped me:

Get KEXT TEAM ID


Forum|alt.badge.img+12
  • Valued Contributor
  • June 8, 2018

Try the iTunes API?

Grab the adam ID from the app's URL:
https://itunes.apple.com/us/app/oculus/id1366478176

Put it at the end of this URL for your request (you can even just put it in your browser):
https://itunes.apple.com/lookup?id=1366478176

And you can find the bundleId in the results.

You can also see bundleIds of installed apps for a given device in Jamf Pro's API (provided that's turned on and you have access). If you're not API savvy, you can easily get the results from the API resource documentation page:

  1. Go to (your.jss.url)/api
  2. Scroll down to "/mobiledevices" and click to expand
  3. Find "GET /mobiledevices/serialnumber/{serialnumber}", click to expand and sign in when prompted
  4. Enter in the serial number of the device you want to see the bundleIds for and click "try it out"
  5. In the XML results, scroll/search for the "<applications>" container. You should see all of the installed apps like this:
 <applications>
    <size>3</size>
    <application>
      <application_name>Drive</application_name>
      <application_version>4.1.36890</application_version>
      <identifier>com.google.Drive</identifier>
    </application>
    <application>
      <application_name>Self Service</application_name>
      <application_version>15031901</application_version>
      <identifier>com.jamfsoftware.selfservice</identifier>
    </application>
    <application>
      <application_name>Spotify</application_name>
      <application_version>380001169</application_version>
      <identifier>com.spotify.client</identifier>
    </application>
  </applications>