Post

Replies

Boosts

Views

Activity

Reply to Xcode Cloud failed to install brew?
You can use gem bundler in ci_post_clone.sh # !/bin/sh   cd ..   echo ">>> SETUP ENVIRONMENT" echo 'export GEM_HOME=$HOME/gems' >>~/.bash_profile echo 'export PATH=$HOME/gems/bin:$PATH' >>~/.bash_profile export GEM_HOME=$HOME/gems export PATH="$GEM_HOME/bin:$PATH"   echo ">>> INSTALL BUNDLER" gem install bundler --install-dir $GEM_HOME   echo ">>> INSTALL DEPENDENCIES" bundle install   echo ">>> INSTALL PODS" bundle exec pod install You also create Gemfile same level with ci_scripts folder in Gemfile source "https://rubygems.org" gem 'cocoapods'
Mar ’23
Reply to Apple Search Ads - Create Certificate button missing
You can use OAuth2 replaces key and certificate credentials authentication in previous versions of the API.   Please note, at this time, you need to invite a new user to your Apple Search Ads account and provide them one of the API user roles (API Account Manager, API Account Read Only) in order to create and edit an API Public Key in UI. Only these API user roles above are able to create and edit an API Public Key within your Apple Search Ads account. For more details regarding Apple Search Ads API process, please reference: Implementing OAuth for the Apple Search Ads API Note: Apple updated Apple Search Ads API v4 For example: When you have accessToken try this curl curl --request GET \ --url https://api.searchads.apple.com/api/v4/me \ --header 'Authorization: Bearer {access_token}' \ --header 'X-AP-Context: orgId={your_orgID}
Jun ’21