Coder Social home page Coder Social logo

Comments (4)

przbadu avatar przbadu commented on August 28, 2024

Fault was all mine. Now, I have modified menuProxy to:

<script>
  intuit.ipp.anywhere.setup({menuProxy: '<%= bluedot_settings_url %>', grantUrl: "<%= authenticate_settings_url %>"});
</script>

"We are sorry but we cannot load the menu right now", this was displaying because I forgot to create .js file of bluedot action.

Now it is displaying bluedot menu without companies. So, I need a help to load companies in this bluedot menu from .js file or bluedot action?

from quickeebooks.

ruckus avatar ruckus commented on August 28, 2024

You will need to retrieve the contents of the Bluedot menu from Intuit. Intuit also recommends you cache the output. An example Rails controller (your bluedot_settings_url) might look like:

class IntuitController < ApplicationController

  def bluedot
    intuit_account = IntuitAccount.find(..)

    # check first in cache
    html = Rails.cache.read(intuit_account.menu_proxy_code_id)
    if !html.blank?
      render(:text => html) and return
    end

    # not cached, retrieve from Intuit
    access_token = intuit_account.access_token
    access_secret = intuit_account.access_secret
    consumer = OAuth::AccessToken.new($qb_oauth_consumer, access_token, access_secret)
    response = consumer.request(:get, "https://appcenter.intuit.com/api/v1/Account/AppMenu")
    if response && response.body
      html = response.body

      # insert into cache
      if intuit_account
        Rails.cache.write(intuit_account.menu_proxy_code_id, html)
      end
      render(:text => html) and return
    end
  end

end

from quickeebooks.

przbadu avatar przbadu commented on August 28, 2024

How can I get menu_proxy_code_id? I have no idea.

I tried to generate menu_proxy_code_id while generating realm_id, access_token and access_secrete like:

at = session[:qb_request_token].get_access_token(:oauth_verifier => params[:oauth_verifier])
    access_token = at.token
    access_secret = at.secret
    realm_id = params['realmId']

    menu_proxy_code_id = at.menu_proxy_code_id
    puts "*************" + menu_proxy_code_id +"******************"

but it will generate something like:

NoMethodError - undefined method `menu_proxy_code_id' for #<OAuth::AccessToken:0xb4eac7c>:

What i am missing here. Please make me clear, how can I generate menu_proxy_code_id and display contents of the bluedot menu.

thanks

from quickeebooks.

przbadu avatar przbadu commented on August 28, 2024

thanks the solution was in your post that i was not focusing at:

    # not cached, retrieve from Intuit
    access_token = intuit_account.access_token
    access_secret = intuit_account.access_secret
    consumer = OAuth::AccessToken.new($qb_oauth_consumer, access_token, access_secret)
    response = consumer.request(:get, "https://appcenter.intuit.com/api/v1/Account/AppMenu")
    if response && response.body
      html = response.body
      render(:text => html) and return
   end

Really apprreciate for your help.

from quickeebooks.

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.